您可以通过后端外观>菜单添加它,并通过将页面或帖子拖动到菜单中并在您想调用的地方调用它来创建菜单和>子菜单。
有关更多详细信息,请参阅此链接How to Add More Navigation Menus to your WordPress
或者可以使用衰减代码将特定元素添加到菜单中
add_filter( \'wp_nav_menu_items\', \'your_custom_menu_item\', 10, 2 );
function your_custom_menu_item ( $items, $args ) {
if (is_single() && $args->theme_location == \'primary\') {
$items .= \'<li><p>Show whatever</p><li>\';
}
return $items;
}