CSS
-Tricks
treehouse :
what would you like to learn today?
Web Design
Web Development
iOS Development
Show search box
Search
Search in:
All
Articles
Forums
Snippets
Videos
✕
Home
Forums
Snippets
Gallery
Videos
Almanac
Demos
Lodge
Navigation 'n' Search
Forums
Illustration by Nick Sirotich
Forums
»
PHP Problems
wordpress wp_list_pages help
spencerf
Permalink to comment
#
October 2009
Is there a way to exclude child pages using
<?php wp_list_pages(); ?>
?
Rick Q
Permalink to comment
#
October 2009
If I'm not mistaken you would use the depth parameter, with a depth of 1:
<?php wp_list_pages('depth=1'); ?>
You can see all the parameters in the Wordpress Codex, http://codex.wordpress.org/Template_Tags/wp_list_pages.
Add a Comment
<?php wp_list_pages('depth=1'); ?>You can see all the parameters in the Wordpress Codex, http://codex.wordpress.org/Template_Tags/wp_list_pages.