Skip to content

Instantly share code, notes, and snippets.

@shahidulislamus
Last active August 29, 2015 14:14
Show Gist options
  • Save shahidulislamus/01a5eb74266b7bebdc40 to your computer and use it in GitHub Desktop.
Save shahidulislamus/01a5eb74266b7bebdc40 to your computer and use it in GitHub Desktop.
this is going to function.php
function register_my_menus() {
register_nav_menus( array(
'header_menu' => 'this menu is going to header',
'footer_menu' => 'this menu is going to footer',
) );
}
add_action( 'init', 'register_my_menus' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment