Advertisement
orksnork

Untitled

Jan 22nd, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. //wp-includes/functions.php - just plonked it in there.  couldn't find out if it needed to be somewhere speshul
  2.  
  3. function register_menu() {
  4.     register_nav_menu('sidebar-links', __('Sidebar Links'));
  5.     add_action('init', 'register_menu');
  6. }
  7.  
  8. //sidebar.php (did it through the editor in WP for the theme)
  9.  
  10. <?php if ( has_nav_menu( 'sidebar-links' ) ) { /* if menu location 'primary-menu' exists then use custom menu */
  11.              wp_nav_menu( array( 'theme_location' => 'sidebar-links') );
  12.     } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement