add_filter('wp_nav_menu_items', 'add_custom', 10, 2);
function add_custom($items, $args) {
if ($args->theme_location == 'primary') {
$items .= '<li class="custom"></li>';
}
return $items;
}
产生:
<ul id="menu-top">
<li></li>
<li></li>
<li></li>
<li class="custom"></li> /* added custom HTML */
<ul>
但是如果我的WP菜单没有“theme_location”怎么办?我可以通过id / class而不是“theme_location”来定位菜单,或者如何将HTML添加到特定菜单中?
答案 0 :(得分:0)
你能使用jQuery吗?
jQuery(document).ready(function($) {
$('#menu-top').append('<li class="custom"></li>');
});
或PHP + CSS - 使用此解决方案,您可以将其添加到每个菜单中,并在需要时通过CSS隐藏它。
add_filter('wp_nav_menu_items', 'add_custom', 10, 2);
function add_custom($items, $args) {
$items .= '';
return $items;
}
li.custom { display:none; } // hide originally
ul#menu-top li.custom { display:inline; } // or whatever styles
答案 1 :(得分:0)
当没有theme_location时,我想,它会回到wp_page_menu。因此,理论上,您可以过滤到wp_page_menu
并修改输出。
<?php
//Use this filter to modify the complete output
//You can get an argument to optionally check for the right menu
add_filter( 'wp_page_menu', 'my_page_menu', 10, 2 );
/**
* Modify page menu
* @param string $menu HTML output of the menu
* @param array $args Associative array of wp_page_menu arguments
* @see http://codex.wordpress.org/Function_Reference/wp_page_menu
* @return string menu HTML
*/
function my_page_menu( $menu, $args ) {
//see the arguments
//Do something with $menu
return $menu;
}
//Use this filter to alter the menu argument altogether
//It is fired before creating any menu html
add_filter( 'wp_page_menu_args', 'my_page_menu_pre_arg', 10, 1 );
/**
* Modify page menu arguments
* @param array $args Associative array of wp_page_menu arguments
* @see http://codex.wordpress.org/Function_Reference/wp_page_menu
* @return array modified arguments
*/
function my_page_menu_pre_arg( $args ) {
//Do something with $args
return $args;
}
希望它有所帮助。