如何在NAV LI中获取PAGE_ID

时间:2015-09-11 作者:kwa kwa

我需要一个带有li标签中链接页面的页面ID的菜单。应该是这样的:

<ul id="menu">
    <li class="pageid_23"><a href="page1">Page 1</a></li>
    <li class="pageid_12"><a href="page2">Page 2</a></li>
    <li class="pageid_41"><a href="page3">Page 3</a></li>
</ul>
我发现了很多例子,但不只有一个对我有用。

关于我的问题的最好的文章是Antonios:http://webtonio.com/wordpress-adding-page-ids-to-menu/

但我只会出错。也许我把代码贴错地方了?

我使用WP4。3和2015模板。

以下是我是如何尝试的:

functions.php

    class nav_page_id extends Walker_Nav_Menu{  
        /**
         *      Walker object, appends page id to data-url attribute on link
         */
        function start_el(&$output, $item, $depth, $args) {

           global $wp_query;

           $indent = ( $depth ) ? str_repeat( "\\t", $depth ) : \'\';

           $class_names = $value = \'\';

           $classes = empty( $item->classes ) ? array() : (array) $item-->classes;

           $class_names = join( \' \', apply_filters( \'nav_menu_css_class\', array_filter( $classes ), $item ) );
           $class_names = \' class="\'. esc_attr( $class_names ) . \'"\';

           $output .= $indent . \'

\';

           $attributes  = ! empty( $item>attr_title )   ? \' title="\'  . esc_attr( $item>attr_title ) .\'"\' : \'\';
           $attributes .= ! empty( $item>target ) ? \' target="\'  . esc_attr( $item>target     ) .\'"\' : \'\';
           $attributes .= ! empty( $item>xfn )  ? \' rel="\' . esc_attr( $item>xfn        ) .\'"\' : \'\';
           $attributes .= ! empty( $item>url ) ? \' href="\'  . esc_attr( $item>url        ) .\'"\' : \'\';
           $attributes .= ! empty( $item>object_id )    ? \' data-id="\' . esc_attr( $item>object_id )  .\'"\' : \'\';
           $item_output = $args->before;
           $item_output .= \'<a\'. $attributes .\'>\';
           $item_output .= $args->link_before .apply_filters( \'the_title\', $item->title, $item>ID );
           $item_output .= $args->link_after;
           $item_output .= \'</a>\';
           $item_output .= $args->after;

           $output .= apply_filters( \'walker_nav_menu_start_el\', $item_output, $item, $depth, $args );


                }


}
这就是错误消息:

分析错误:语法错误,htdocs\\test-wordpress\\wp-content\\themes\\twentyevent\\functions中出现意外“>”,应为“)”。php在线354

第354行是这一行:

$attributes  = ! empty( $item>attr_title )   ? \' title="\'  . esc_attr( $item>attr_title ) .\'"\' : \'\';
你能帮帮我吗?

1 个回复
SO网友:TheDeadMedic

你看不到吗?这是:

esc_attr( $item>attr_title )
。。。应为:

esc_attr( $item->attr_title ) // See the hyphen?

相关推荐

在短码中加载带有ID的自定义帖子类型

我第一次提出了一个主题。我为横幅/行动调用创建了一个自定义的帖子类型,我想在不同的帖子中使用一个快捷码来包含这些横幅/行动调用。短代码应如下所示:[banner id=123].到目前为止,所有的横幅都会显示出来,我的快捷码参数不会过滤结果。我的失败在哪里? function mrt_shortcode_banner( $atts ) { // Attributes $atts = shortcode_atts( array(