У меня есть вот такое меню:
<div class="bottom__right">
<div class="menu__mobile">
<input type="checkbox" />
<span></span>
<span></span>
<span></span>
<nav>
<?php wp_nav_menu(array(
'theme_location' => 'top',
'container' => null,
'menu_class' => 'mobile',
'menu_id' => 'mobile'
)); ?>
</nav>
</div>
</div>
Возможно ли как-то добавить дополнительный пункт в меню, который выглядел бы так?
Попробовала через functions.php, но не работает:
add_filter( 'wp_nav_menu_items', 'change_nav_menu_items', 10, 2 );
function change_nav_menu_items( $items, $args ) {
if ( 'mobile' == $args->theme_location ) {
$items .= '<li class="contacts">
<a class="red" href="tel: 3333333">
<div class="contacts__intro">
<div class="pulse phone">
<i class="fa fa-phone"></i>
</div>
<div class="contacts__phone"><p>+33333333</p></div>
</div>
</a> </li>';
}
return $items;
}
Очень нужно добавить именно в меню.