Skip to content

Instantly share code, notes, and snippets.

@colegeissinger
Created July 12, 2013 17:33
Show Gist options
  • Save colegeissinger/5986231 to your computer and use it in GitHub Desktop.
Save colegeissinger/5986231 to your computer and use it in GitHub Desktop.
get post statuses
function make_post_statuses() {
global $wp_post_statuses;
foreach ( $wp_post_statuses as $status => $name ) {
if ( $status != 'trash' && $status != 'publish' && $status != 'auto-draft' )
$statuses[] = $status;
}
return $statuses;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment