*
* @package WordPress
* @subpackage Starkers
* @since Starkers 3.0
*/
?>
>
tag based on what is being viewed.
* We filter the output of wp_title() a bit -- see
* twentyten_filter_wp_title() in functions.php.
*/
wp_title( '|', true, 'right' );
?>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
>
'main-menu', // Setting up the location for the main-menu, Main Navigation.
'menu_class' => 'sf-menu', //Adding the class for dropdowns
'container_id' => 'navwrap', //Add CSS ID to the containter that wraps the menu.
'fallback_cb' => 'wp_page_menu', //if wp_nav_menu is unavailable, WordPress displays wp_page_menu function, which displays the pages of your blog.
)
);
?>