The question
我想检查菜单中的每个项目是什么类型的菜单项,即它是页面、类别还是自定义链接。
What I want to achieve
我想创建一个由类别和页面链接组成的菜单。在菜单中的类别中,我只想显示那些包含帖子的类别。页面链接将始终显示。
此菜单将在电子商务网站上使用,其目录会不断变化。制作一个隐藏空类别的动态菜单,无需在管理区域不断更新菜单。
What I have now
基于此的自定义walker菜单
SE post 通过向
start_el
作用不幸的是,我的逻辑也隐藏了页面链接
完整walker菜单功能:
function cs_modify_nav_menu_args( $args ){
if( \'primary-menu\' == $args[\'theme_location\'] ){
$args[\'walker\'] = new cs_walker_nav_menu();
}
return $args;
}
class cs_walker_nav_menu extends Walker_Nav_Menu {
// filter empty categories and add main/sub classes to li\'s and links
function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
global $wp_query;
if(!is_page($item->ID)){
$non_empty_categories = get_categories(array(\'taxonomy\' => \'product_cat\'));
$empty_categories = array();
$is_empty = true;
// check menu items are for an empty category
foreach ( $non_empty_categories as $cat )
if ($item->object_id === $cat->term_id)
$is_empty = false;
// if it is empty add it to array
if ($is_empty)
$empty_categories[] = $item->ID;
// Don\'t build nav item for items in the is_empty array
foreach( $empty_categories as $category_to_skip )
if( $item->ID == $category_to_skip )
return $output;
}
$indent = ( $depth > 0 ? str_repeat( "\\t", $depth ) : \'\' ); // code indent
// depth dependent classes
$depth_classes = array(
( $depth == 0 ? \'main-menu-item\' : \'sub-menu-item\' ),
( $depth >=2 ? \'sub-sub-menu-item\' : \'\' ),
( $depth % 2 ? \'menu-item-odd\' : \'menu-item-even\' ),
\'menu-item-depth-\' . $depth
);
$depth_class_names = esc_attr( implode( \' \', $depth_classes ) );
// passed classes
$classes = empty( $item->classes ) ? array() : (array) $item->classes;
$class_names = esc_attr( implode( \' \', apply_filters( \'nav_menu_css_class\', array_filter( $classes ), $item ) ) );
// build html
$output .= $indent . \'<li id="nav-menu-item-\'. $item->ID . \'" class="\' . $depth_class_names . \' \' . $class_names . \'">\';
// link attributes
$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 .= \' class="menu-link \' . ( $depth > 0 ? \'sub-menu-link\' : \'main-menu-link\' ) . \'"\';
$item_output = sprintf( \'%1$s<a%2$s>%3$s%4$s%5$s</a>%6$s\',
$args->before,
$attributes,
$args->link_before,
apply_filters( \'the_title\', $item->title, $item->ID ),
$args->link_after,
$args->after
);
// build html
$output .= apply_filters( \'walker_nav_menu_start_el\', $item_output, $item, $depth, $args );
}
}
Attempted solutions
这个
nav_menu_item
对象不提供菜单项类型。
通过$item->ID
“to is\\u”页面不返回。我相信$item->ID
菜单项ID不是帖子ID。