Skip to content

Instantly share code, notes, and snippets.

@theukedge
Created August 22, 2016 18:10
Embed
What would you like to do?
<?php function limit_soup( $args ) {
$args['post_status'] = array( 'draft', 'future' );
return $args;
}
add_filter( 'soup_query', 'limit_soup' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment