Skip to content

Instantly share code, notes, and snippets.

@ScarletPonytail
Last active June 8, 2017 14:13
Show Gist options
  • Save ScarletPonytail/5cfbc0ea6e435d3542a196d2094716b5 to your computer and use it in GitHub Desktop.
Save ScarletPonytail/5cfbc0ea6e435d3542a196d2094716b5 to your computer and use it in GitHub Desktop.
WordPress - Register menus in functions.php
// Register Menus
function register_my_menus() {
register_nav_menus(
array(
'header' => __( 'Header' ),
'footer' => __( '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