Answer the question
In order to leave comments, you need to log in
How to remove circular links in the menu?
Website on wp, main menu code in header:
<nav class="header-nav">
<?php $main_menu_items = wp_get_nav_menu_items('Главное меню'); ?>
<ul class="menu">
<?php foreach($main_menu_items as $menu_item) : ?>
<li class="menu-item <?php echo vince_check_active_menu($menu_item);?> current_page_item">
<?php else : ?>
<a href="<?= $menu_item->url ?>" class="menu-item__link current_page_item"><?= $menu_item->title ?></a>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ul>
</nav>
<a>
<span>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question