Skip to content

Instantly share code, notes, and snippets.

@flabernardez
Created May 28, 2021 06:41
Show Gist options
  • Save flabernardez/49ad77762529f842460b55a483dd1a90 to your computer and use it in GitHub Desktop.
Save flabernardez/49ad77762529f842460b55a483dd1a90 to your computer and use it in GitHub Desktop.
#wordpress #php args to display only childs from a post
<?php
$args = array(
'orderby' => 'date',
'order' => 'DESC',
'post_type' => 'city-guide',
'posts_per_page' => 36,
'paged' => $paged,
'post_parent__not_in' => array(0)
);
// see in https://stackoverflow.com/questions/35346352/exclude-parent-posts-and-display-only-child-posts-in-archive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment