Skip to content

Instantly share code, notes, and snippets.

@tiborp
Last active February 23, 2022 09:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tiborp/8b22c28bcda2cb275510288a0bb886db to your computer and use it in GitHub Desktop.
Save tiborp/8b22c28bcda2cb275510288a0bb886db to your computer and use it in GitHub Desktop.
<?php $menu_location = 'your-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="footer__menu-link"><?= 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