[ Tag Archive ]


How to Remove the Links to Parent Pages in the WordPress Page List

Posted on June 13, 2009  |  Category: Tutorials

Creating a page list in WordPress is super easy. All it takes is one function call.

<?php wp_list_pages(); ?>

The only problem with the list is if you have sub-pages categorized under pages that you only want to use as a way to organize your pages. Your parents pages are still linked to in the list but most likely they will be empty. I decided to create a quick function to solve this problem.

Read More »