Recently, one of our readers asked us how to display child pages of a WordPress page?
If you organize your WordPress website with parent and child pages, then you may want to display your child pages or sub pages on the main parent page. You may also want to show the main page on each sub page for easy browsing.
In this article, we will show you how to easily display a list of child pages for a parent page in WordPress.
When You Need to Show a List of Child Pages?
WordPress comes with two default post types called posts and pages. Posts are blog content, and they’re usually organized with categories and tags.
Pages are one-off or standalone content that are evergreen, such as an ‘About us’ page or ‘Contact us’ page, for example.
In WordPress, pages can be hierarchical which means you can organize them with parent and child pages.
For instance, you may want to create a Product page with child pages for Features, Pricing, and Support.
To create a child page, follow our guide on how to create a child page in WordPress.
After you’ve created your parent and child pages, you may want to list child pages on the main parent page.
Now, an easy way to do this is by manually editing the parent page and add a list of links individually.
However, you’ll need to manually edit the parent page each time you add or delete a child page. Wouldn’t it be nicer if you could just create a child page and it would automatically appear as a link on the parent page?
That being said, let’s take a look at some other dynamic ways to quickly display a list of child pages on the parent page in WordPress. We’ll show you three methods, so you can pick the one that’s best for you:
Method 1. Display Child Pages on Parent Page using a Plugin
This method is easier and recommended for all users.
First, you need to install and activate the Page-list plugin. For more details, see our step by step guide on how to install a WordPress plugin.
Upon activation, you need to edit the parent page and simply add the following shortcode where you want to display the list of child pages.
[subpages]
You can now save your page and preview it in a new browser tab. You’ll notice that it displays a simple bulleted list of all the child pages.
If you want, you can add some custom CSS to change the appearance of the list. Here is some sample CSS you can use as a starting point.
ul.page-list.subpages-page-list {
list-style: none;
list-style-type: none;
background-color: #eee;
border: 1px solid #CCC;
padding: 20px;
}
After applying your custom CSS you can preview the parent page. This is how it looked on our test WordPress website.
The plugin provides a bunch of shortcode parameters that allow you to set depth, exclude pages, number of items, and more. For details, please see the plugin’s page for detailed documentation.
Method 2. List Child Pages for a Parent Page using Code
This method is a bit advanced and requires to you add code to your WordPress website. If you have not done this before, then please take a look at our guide on how to copy and paste code in WordPress.
To list child pages under a parent page, you need to add the following code in a code snippets plugin or in your theme’s functions.php file:
function wpb_list_child_pages() {
global $post;
if ( is_page() && $post->post_parent )
$childpages = wp_list_pages( 'sort_column=menu_order&title_li=&child_of=' . $post->post_parent . '&echo=0' );
else
$childpages = wp_list_pages( 'sort_column=menu_order&title_li=&child_of=' . $post->ID . '&echo=0' );
if ( $childpages ) {
$string = '<ul class="wpb_page_list">' . $childpages . '</ul>';
}
return $string;
}
add_shortcode('wpb_childpages', 'wpb_list_child_pages');
At WPBeginner, we always recommend adding code in WordPress with the WPCode plugin.
WPCode allows you to easily add custom code without editing your theme files, so you don’t have to worry about breaking your site.
First, you need to install and activate the free WPCode plugin. For step by step instructions, see this guide on how to install a WordPress plugin.
Once the plugin is activated, navigate to Code Snippets » Add Snippet from your WordPress dashboard. From there, hover your mouse over the ‘Add Your Custom Code (New Snippet)’ option and click the ‘Use snippet’ button.
Next, add a title for your snippet and paste the code from above into the ‘Code Preview’ box.
Don’t forget to choose ‘PHP Snippet’ as the code type from the dropdown menu on the right.
After that, simply toggle the switch from ‘Inactive’ to ‘Active’ and click the ‘Save Snippet’ button at the top of the page.
This code first checks to see if a page has a parent or the page itself is a parent.
If it is a parent page, then it displays the child pages associated with it. If it is a child page, then it displays all other child pages of its parent page.
Lastly, if this is just a page with no child or parent page, then the code will simply do nothing. In the last line of the code, we have added a shortcode, so you can easily display child pages without modifying your page templates.
To display child pages simply add the following shortcode in a page or text widget in the sidebar:
[wpb_childpages]
Don’t forget to save your changes and preview them in a browser tab. This is how it appears on our test site.
You can now style this page list using some custom CSS. Here is some sample CSS code you can use as a starting point.
ul.wpb_page_list {
list-style: none;
list-style-type: none;
background-color: #eee;
border: 1px solid #CCC;
padding: 20px;
}
Method 3. Dynamically Display Child Pages Without Any Shortcode
Using shortcodes is convenient, but the problem with them is that you will have to add shortcodes in all pages that have parent or child pages.
You may end up having shortcodes in lots of pages, and sometimes you may even forget to add it.
A better approach would be to edit the page template file in your theme, so that it can automatically display child pages.
To do that, you need to edit the main page.php
template, or create a custom page template in your theme.
You can edit your main theme, but those changes will disappear if you change or update your theme. That’s why it would be better if you create a child theme and then make your changes in the child theme.
In your page template file, you need to add this line of code where you want to display child pages.
<?php wpb_list_child_pages(); ?>
That’s all. Your theme will now automatically detect child pages and display them in a plain list.
You can customize the styles with CSS and formatting. Here’s an example of how the OptinMonster website shows the parent page and sub pages:
We hope this article helped you list child pages for a parent page in WordPress. You may also want to see our guide on the most important pages to create on a new WordPress website, and our comparison of the best drag & drop WordPress page builders to create custom layouts without any code.
If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.
Philip
Hello this works, except that the parent is also displaying, how do i show just the child pages, thanks
WPBeginner Support
The simplest method for what it sounds like you’re wanting would be to not have content on the parent page and only have your content in the child pages.
Admin
Sachit Shori
Thank you so much. You saved me.
WPBeginner Support
You’re welcome
Admin
Emmanuel Husseni
Hello Wpbeginner,
Please how can i sort all the child page alphabetically on the parent page. I’ve follow all step but the sub pages are showing randomly on the parent page.
Waiting for response. ….Thanks
WPBeginner Support
You would change the two instances of menu_order in our code to be: post_title
Admin
Iyke O.
How do I make the list collapsible on sidebar.
WPBeginner Support
To make it collapsable you could use an accordion plugin such as one of the ones from our article here: https://www.wpbeginner.com/showcase/best-wordpress-accordion-plugins/
Admin
Stacie
Easy to follow and did the job. Thanks so much for sharing!
WPBeginner Support
You’re welcome, glad our content could be helpful
Admin
Aaro
Can I assign a css class to this function? So that when I make css changes to ul elements it wouldn’t affect other ul’s on the site.
Or any other simple solution for this?
WPBeginner Support
You could add your CSS class in the ul section of the function
Admin
Keshav Murthy
Hi, WPB Team,
Thank you so much for this Snippet and the tutorial.
It saved my ton of time and helped me too.
With Warm Regards,
Keshav Murthy
WPBeginner Support
Glad our tutorial could help
Admin
Gary Granai
I installed the plugin code snippets in wordpress 4.9.8
I copied the code on https://www.wpbeginner.com/wp-tutorials/how-to-display-a-list-of-child-pages-for-a-parent-page-in-wordpress/#respond and added it to a new snippet in code snippets.
I made a page and then a page which was given the attribute of having the first page as the parent page.
The child parent relationship is shown in the list of pages in the attributes drop down.
When I open the parent page I see nothing that shows a child page.
I then tried using the functions.php page.
I added the code copied from https://www.wpbeginner.com/wp-tutorials/how-to-display-a-list-of-child-pages-for-a-parent-page-in-wordpress/#respond to the bottom of the code on the functions page.
When I open the parent page, I it does not display. What displays is an error message saying there is unexpected code.
I restored the functions.php page to its original statuc.
What changes must I make to what I have tried to do.
WPBeginner Support
Hi Gary,
Make sure that you publish the child page before testing the code. Also carefully copy the code again to make sure that you are not copying the numbers or any unexpected characters.
Admin
Itika
I have a question. I have added sub pages in parent page but when I am opening the site in mobile and clicking on parent page it opens the empty parent page. To view the drop down sub pages one have to hold the button of parent page. How can I fix it. I don’t want that empty page to open. I want that if we touch on parent page it opens the drop down menu.
Please suggest how to do it.