Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active January 16, 2020 09:02
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 vanaf1979/c2dea976ba7cb07b082d9e9912d30a93 to your computer and use it in GitHub Desktop.
Save vanaf1979/c2dea976ba7cb07b082d9e9912d30a93 to your computer and use it in GitHub Desktop.
Adding menu’s to your WordPress theme > https://since1979.dev/snippet-003-adding-menus-to-your-theme/
<?php
/**
* Insert the "header-menu" into the page.
*
* @see https://since1979.dev/snippet-003-adding-menus-to-your-theme/
*
* @uses wp_nav_menu() https://developer.wordpress.org/reference/functions/add_action/
* @uses array() https://www.php.net/manual/en/function.array.php
*/
wp_nav_menu(
array(
'theme_location' => 'header-menu',
'menu_class' => 'your-own-class'
)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment