Hi,
I am currently helping to build a site here: http://preview.screencult.com
I have created a secondary menu by inputting this into functions.php:
// This theme uses wp_nav_menu() in two locations.
register_nav_menus( array(
'primary' => __( 'Primary Navigation', 'twentyten' ),
'secondary' => __('Secondary Navigation', 'twentyten')
) );
However, I just want the secondary menu (without the primary menu) to appear on one particular page on the site. Where do I place the following code and how to add necessary conditional tags to make sure it only appears on one page?
<?php wp_nav_menu( array( 'theme_location' => 'secondary' ) ); ?>
Many thanks, I tried searching for the answer already so my bad if it exists somewhere else.