我目前正在使用自定义漫游器来自定义的输出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。
有什么建议么?
如果页面ID有替代方法,那也可以。我最初尝试使用$ item-> url,但是url不能用作类名。只有在没有空格且默认情况下不生成其他属性的情况下,页面标题才有效。
—
雷曼Au