Created
July 4, 2020 12:00
-
-
Save ivanteoh/d9314c1f8f1f5ada6db2c13d3470a8ce to your computer and use it in GitHub Desktop.
WordPress List Pages
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
<div id="navmenu"> | |
<ul> | |
<?php wp_list_pages('depth=1&sort_column=menu_order&title_li='); ?> | |
</ul> | |
</div> |
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
<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