Last active
June 17, 2022 11:05
-
-
Save MrJoshFisher/6a4e0989de19bb87f64d3645d233b231 to your computer and use it in GitHub Desktop.
[Register Menu In WordPress] #wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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