I currently have a parent page with some child pages. I am able to list these child pages but would like to insert a custom li class. The wp_list_pages...
  • May 25, 2022
  • 0 Comments
I need to list subpages, given the id of parent one. I tried as follows: if ($children = get_pages(array('child_of' => $post->ID)) && !empty($children)) { //Do stuff here } But...
  • May 25, 2022
  • 0 Comments
i’m query child pages of a page ID. How can i echo the parent page where it says “PARENT TITLE ? Using <?php echo get_the_title( $ID ); ?> is...
  • May 25, 2022
  • 0 Comments
I’m looking for a way to only allow users to create new subpages once there are nine pages that are parents/root pages. Once there are nine parent pages when...
  • May 24, 2022
  • 0 Comments
I created a hierarchical custom post type for a gallery. The parent pages are the galleries and the child pages are the albums. I want to display the most...
  • May 24, 2022
  • 0 Comments