Skip to content

Instantly share code, notes, and snippets.

@cojennin
Created July 12, 2016 15:58
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 cojennin/6bd47b8dbfb853ddc60d12f56c14acab to your computer and use it in GitHub Desktop.
Save cojennin/6bd47b8dbfb853ddc60d12f56c14acab to your computer and use it in GitHub Desktop.
Make post type 'any'
<?php
/**
* Plugin Name: Edit Flow - All post types in Story Budget
*/
function post_type_as_any( $args ) {
$args['post_type'] = 'any';
return $args;
}
add_filter( 'ef_story_budget_posts_query_args', 'post_type_as_any' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment