Skip to content

Instantly share code, notes, and snippets.

@kylephillips
Created March 26, 2019 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kylephillips/a062c38c4b60c6ed8ab4e6f26ff9eb57 to your computer and use it in GitHub Desktop.
Save kylephillips/a062c38c4b60c6ed8ab4e6f26ff9eb57 to your computer and use it in GitHub Desktop.
Filter the primary query in Nested Pages
add_filter('nestedpages_page_listing', 'nestedpagesQueryFilter');
function nestedpagesQueryFilter($args)
{
$args['post_status'][] = 'custom_post_status';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment