Forum Replies Created

Viewing 1 replies (of 1 total)
  • So as a total noob… I can’t get my head wrapped around it.

    So this is what I have so far and can’t get my 2nd menu to appear.

    File: functions.php

    if (function_exists('register_nav_menus')) {
    		register_nav_menus(
    			array(
    				'main_nav' => 'Main Navigation Menu',
    				'product_nav' => 'Product Menu'
    			)
    		);
    	}
    
    	function show_menu() {
    	  if ( is_page('products') )
    	  {
    	    if ( has_nav_menu( 'product_nav' ) )
    	      { wp_nav_menu( array( 'theme_location' => 'product_nav' ) ); }
    	  }
    	}

    What do I enter in my page.php to display Product Menu? I want the 2nd menu to be visible only on product page only.

    Please help

Viewing 1 replies (of 1 total)