Last active
May 2, 2019 05:02
-
-
Save jlittlejohn/23814f299dc5d22ed8d0 to your computer and use it in GitHub Desktop.
WP: Register a Menu
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 register_my_menu() { | |
register_nav_menu('footer-navigation',__( 'Footer Navigation' )); | |
} | |
add_action( 'init', 'register_my_menu' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment