我目前正在使用自定义walker自定义wp_nav_menu()
, 我正在尝试向<a>
标签。
我希望每个菜单链接的输出如下所示:
<a class="boxPAGEID" href="#">About Me Page</a>
在哪里
PAGEID
是我链接到的页面的ID。
原因是我正在开发一个主题,该主题可以打开灯箱中的页面内容,灯箱由标记中的类触发。
以下是我的functions.php
文件(在代码之后,我将指向遇到问题的区域):
class description_walker extends Walker_Nav_Menu
{
function start_el(&$output, $item, $depth, $args)
{
global $wp_query;
$pageid = $wp_query->post->ID;
$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 . \'<li id="menu-item-\'. $item->ID . \'"\' . $value . $class_names .\'>\';
$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="\' . \'#\' .\'"\' : \'\';
$prepend = \'<strong>\';
$append = \'</strong>\';
$description = ! empty( $item->description ) ? \'<span>\'.esc_attr( $item->description ).\'</span>\' : \'\';
if($depth != 0)
{
$description = $append = $prepend = "";
}
$item_output = $args->before;
$item_output .= \'<a\'. $attributes . \'class="box\' . $pageid . \'"\' .\'>\';
$item_output .= $args->link_before .$prepend.apply_filters( \'the_title\', $item->title, $item->ID ).$append;
$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 );
if ($item->menu_order == 1) {
$classes[] = \'first\';
}
}
}
结尾有几行,开头是
$item_output
. 第二行是我尝试生成页面ID的位置:
$item_output .= \'<a\'. $attributes . \'class="box\' . $pageid . \'"\' .\'>\';
在哪里
$pageid
依据:
global $wp_query;
$pageid = $wp_query->post->ID;
这为我生成的所有链接提供了一个固定的ID。
或者,代替$pageid
我试着用$item->ID
, 但这给了我菜单项的ID。
有什么建议吗?