Created
          November 19, 2012 15:39 
        
      - 
      
- 
        Save rupert-ong/4111327 to your computer and use it in GitHub Desktop. 
    Wordpress: Navigation Menu Embed
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?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