Skip to content

Instantly share code, notes, and snippets.

@levnhub
Last active August 1, 2018 15:45
Show Gist options
  • Save levnhub/317ed00bc0f52ba1ab2506e373667d92 to your computer and use it in GitHub Desktop.
Save levnhub/317ed00bc0f52ba1ab2506e373667d92 to your computer and use it in GitHub Desktop.
WP Menu
<?php
// Работа с меню через wp_get_nav_menu_items();
if ( $menu_items = wp_get_nav_menu_items('Главное меню') ) : ?>
<nav class="main_nav">
<ul class="main_nav--list">
<?php foreach ( (array) $menu_items as $key => $menu_item ) :
$title = $menu_item->title; // Заголовок элемента меню (анкор ссылки)
$url = $menu_item->url; // URL ссылки
$target = ( $menu_item->target ) ? 'target="' . $menu_item->target . '"' : '' ; // Цель ссылки c аттрибутом
?>
<li class="main_nav--item">
<a class="main_nav--link" href="<?php echo $url; ?>" <?php echo $target; ?>><?php echo $title; ?></a>
</li>
<?php endforeach; ?>
</ul>
</nav>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment