Skip to content

Instantly share code, notes, and snippets.

@rupert-ong
Created November 19, 2012 15:39
Show Gist options
  • Save rupert-ong/4111327 to your computer and use it in GitHub Desktop.
Save rupert-ong/4111327 to your computer and use it in GitHub Desktop.
Wordpress: Navigation Menu Embed
<?php
if(function_exists('wp_nav_menu')):
wp_nav_menu(
array(
'menu' =>'primary_nav',
'container'=>'',
'depth' => 2,
'menu_id' => '' )
);
else:
?>
<ul id="menu">
<?php wp_list_pages('title_li=&depth=1'); ?>
</ul>
<?php
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment