Skip to content

Instantly share code, notes, and snippets.

@MrJoshFisher
Last active June 17, 2022 11:05
Show Gist options
  • Save MrJoshFisher/6a4e0989de19bb87f64d3645d233b231 to your computer and use it in GitHub Desktop.
Save MrJoshFisher/6a4e0989de19bb87f64d3645d233b231 to your computer and use it in GitHub Desktop.
[Register Menu In WordPress] #wordpress
function wpb_custom_new_menu() {
register_nav_menus(
array(
'my-custom-menu' => __( 'My Custom Menu' ),
'extra-menu' => __( 'Extra Menu' )
)
);
}
add_action( 'init', 'wpb_custom_new_menu' );
wp_nav_menu( array(
'theme_location' => 'my-custom-menu',
'container_class' => 'custom-menu-class' ) );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment