Skip to content

Instantly share code, notes, and snippets.

@danielstrelec
Created October 21, 2019 06:28
Show Gist options
  • Save danielstrelec/fa2fd184ae06a96d2b4440be94351275 to your computer and use it in GitHub Desktop.
Save danielstrelec/fa2fd184ae06a96d2b4440be94351275 to your computer and use it in GitHub Desktop.
<?php $menu_location = 'some_menu_location'; ?>
<?php if ( has_nav_menu( $menu_location ) ): ?>
<?php $menu_items = wp_get_nav_menu_items( wp_get_nav_menu_name( $menu_location ) ); ?>
<?php foreach ( $menu_items as $menu_item ): ?>
<a href="<?= esc_url( $menu_item->url ) ?>"
target="<?= esc_attr( $menu_item->target ?: '_self' ) ?>"
class="<?= esc_attr( implode( ' ', $menu_item->classes ) ) ?>"><?= esc_html( $menu_item->title ) ?></a>
<?php endforeach; ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment