Skip to content

Instantly share code, notes, and snippets.

@michaelwilhelmsen
Created October 7, 2015 10:25
Show Gist options
  • Select an option

  • Save michaelwilhelmsen/d52070a48bdfa8666037 to your computer and use it in GitHub Desktop.

Select an option

Save michaelwilhelmsen/d52070a48bdfa8666037 to your computer and use it in GitHub Desktop.
Check if post is a $type custom post type, inside or outside of the loop. Ex: if ( is_post_type( 'book' ) ) {}
function is_post_type($type){
global $wp_query;
if($type == get_post_type($wp_query->post->ID)) return true;
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment