Skip to content

Instantly share code, notes, and snippets.

@ivanteoh
Created July 4, 2020 12:00
Show Gist options
  • Save ivanteoh/d9314c1f8f1f5ada6db2c13d3470a8ce to your computer and use it in GitHub Desktop.
Save ivanteoh/d9314c1f8f1f5ada6db2c13d3470a8ce to your computer and use it in GitHub Desktop.
WordPress List Pages
<div id="navmenu">
<ul>
<?php wp_list_pages('depth=1&sort_column=menu_order&title_li='); ?>
</ul>
</div>
<div id="navmenu">
<ul>
<li><a href="<?php echo get_settings('home'); ?>">Home</a></li>
<li><a href="blog">Blog</a></li>
<li><a href="Gallery">Gallery</a></li>
<li><a href="about">About</a></li>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment