Skip to content

Instantly share code, notes, and snippets.

@colorful-tones
Created June 11, 2013 15:01
Show Gist options
  • Save colorful-tones/5757597 to your computer and use it in GitHub Desktop.
Save colorful-tones/5757597 to your computer and use it in GitHub Desktop.
Check if Post Type inside or outside of loop
<?php
/*
This allows us to be able to use conditional
to check whether is_post_type = "your custom post type here"
And can be used inside OR outside the loop
*/
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