Created
April 20, 2015 03:49
-
-
Save pixelcoder/c90451509892bf86418e to your computer and use it in GitHub Desktop.
WordPress: Register menus
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
# Register menus | |
function px_register_menus(){ | |
register_nav_menus(array( | |
'wp-primary-menu' => __('Primary WordPress Menu'), | |
'wp-footer-menu' => __('Footer WordPress Menu') | |
)); | |
} | |
add_action('init', 'px_register_menus'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment