Created
August 1, 2016 21:39
-
-
Save awakekat/813c7375413c9b43b66e9b8ca89a21c0 to your computer and use it in GitHub Desktop.
Register Menu in functions.php
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
| <?php | |
| /* | |
| * Register Menu in functions.php | |
| */ | |
| add_action( 'after_setup_theme', 'register_my_menu' ); | |
| function register_my_menu() { | |
| register_nav_menu( 'primary', __( 'Primary Menu', 'theme-slug' ) ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment