Skip to content

Instantly share code, notes, and snippets.

@guilhermemarconi
Last active August 29, 2015 14:05
Show Gist options
  • Save guilhermemarconi/d173f600aaf8b7028b52 to your computer and use it in GitHub Desktop.
Save guilhermemarconi/d173f600aaf8b7028b52 to your computer and use it in GitHub Desktop.
Function to verify the post type on WordPress
<?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