我需要一个带有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 ) .\'"\' : \'\';
你能帮帮我吗?