Код: Выделить всё
add_filter('wp_nav_menu_items', 'add_custom', 10, 2);
function add_custom($items, $args) {
if ($args->theme_location == 'primary') {
$items .= '[*]';
}
return $items;
}
Код: Выделить всё
[*]
[*]
[*]
[*] /* added custom HTML */
Подробнее здесь: https://stackoverflow.com/questions/186 ... c-nav-menu
Мобильная версия