/ Published in: PHP
URL: http://thinkvitamin.com/code/getting-started-with-wordpress-custom-menus/
Add this to your functions.php file
Expand |
Embed | Plain Text
add_action('init', 'register_custom_menu'); function register_custom_menu() { register_nav_menu('custom_menu', __('Custom Menu')); }
You need to login to post a comment.
