• Hi –
    I am new to building wordpress theme. I am building one right now. I just added two menus to my theme using the following code in the function.php file:

    add_theme_support( 'menus' );
    	add_action('init', 'register_my_menus');
    	function register_my_menus(){
    		register_nav_menus(
    			array(
    				'header-menu' => 'Header Menu',
    				'side-bar-menu' => 'Side Bar Menu'
    			)
    		);
    	}

    [Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    Then I go to the admin page, but under Appearance, the menus suboption doesn’t appear. Any help will be appreciated.

    Thanks.

Viewing 1 replies (of 1 total)
  • Thread Starter lenye13

    (@lenye13)

    Thanks for the reminder. never posted before. I will make sure I do so the next time.

    Germain

Viewing 1 replies (of 1 total)
  • The topic ‘Menu option doesn't show under appearance’ is closed to new replies.