I have problem. <?php query_posts('category_name=events&posts_per_page=2&offset=1'); ?> <?php while (have_posts()) : the_post(); ?> <div> <?php $children = get_categories('child_of=3'); foreach ($children as $child) { $child = get_category($child); echo $child->cat_name; }; ?>...
  • May 19, 2022
  • 0 Comments
I’m trying to delete all child posts when the parent is deleted. The parent post deletes just fine, but the child posts are not properly deleting. Here’s the code...
  • May 16, 2022
  • 0 Comments
I need some code to know if the post has another pages or not unfortunately i didn’t find yet now any reference for this so any idea will be...
  • May 11, 2022
  • 0 Comments
How can I get a Previous / Next navigation that only navigates the child pages of the current page? By that i mean url.com/page/child1, url.com/page/child2 and so on.. I’ve...
  • May 6, 2022
  • 0 Comments