Skip to content

Instantly share code, notes, and snippets.

@michaeldeboeve
Last active September 16, 2019 08:45
Show Gist options
  • Save michaeldeboeve/101df4a26b14f7e5f833484a30659b6d to your computer and use it in GitHub Desktop.
Save michaeldeboeve/101df4a26b14f7e5f833484a30659b6d to your computer and use it in GitHub Desktop.
Wordpress "is post type" function
<?php
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