我在“主菜单”位置的菜单中有一些菜单项。通过使用wp_nav_menu( array( \'theme_location\' => \'main-menu\' ) );
, 我把所有的13个项目都放在一个分区里。
现在,我只需要在当前div中显示10个菜单项,并在它旁边的其他div中显示Remining(比如id=“new”)。同样,如果id为“new”的div中有10个菜单项,那么将再次创建一个新div,其余的项目将显示在其中。
那么,有没有办法访问包含这些菜单项的数组?请帮忙。
我在“主菜单”位置的菜单中有一些菜单项。通过使用wp_nav_menu( array( \'theme_location\' => \'main-menu\' ) );
, 我把所有的13个项目都放在一个分区里。
现在,我只需要在当前div中显示10个菜单项,并在它旁边的其他div中显示Remining(比如id=“new”)。同样,如果id为“new”的div中有10个菜单项,那么将再次创建一个新div,其余的项目将显示在其中。
那么,有没有办法访问包含这些菜单项的数组?请帮忙。
除了自定义助行器之外,还可以使用过滤器,例如wp_nav_menu_args
或wp_nav_menu_objects
如上所述in the codex
我相信您可以扩展Walker\\u Nav\\u菜单类,将其用于您的提议。在本例中,重要的是custom_menu_walker 元素,它是您的自定义walker类。
wp_nav_menu( array(
\'container\' =>false,
\'menu_class\' => \'nav\',
\'echo\' => true,
\'before\' => \'\',
\'after\' => \'\',
\'link_before\' => \'\',
\'link_after\' => \'\',
\'depth\' => 0,
\'walker\' => new custom_menu_walker())
);
自定义菜单\\u walkerclass custom_menu_walker extends Walker_Nav_Menu
{
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 . \'<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="\' . esc_attr( $item->url ) .\'"\' : \'\';
$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 .\'>\';
$item_output .= $args->link_before .$prepend.apply_filters( \'the_title\', $item->title, $item->ID ).$append;
$item_output .= $description.$args->link_after;
$item_output .= \'</a>\';
$item_output .= $args->after;
$output .= apply_filters( \'walker_nav_menu_start_el\', $item_output, $item, $depth, $args );
}
}
这不是你问题的代码,只是一个小示例。你可以在codex 这里是wpse(1,2)在我的模板中,我使用这样的调用来输出一些自定义菜单:<?php wp_nav_menu(array(\'container_class\' => \'secondary-navigation\', \'theme_location\' => \'secondary\')); ?> 自从升级到WordPress 3.1.4后,我就可以获得完整的页面列表,而不是自定义菜单我看到修复程序(通过谷歌)说我应该添加以下内容来修复此问题:\'fallback_cb\' => f