Skip to content

Instantly share code, notes, and snippets.

@TanvirAmi
Created January 29, 2017 03:59
Show Gist options
  • Save TanvirAmi/e40c2315671d4b2793e667432264fca1 to your computer and use it in GitHub Desktop.
Save TanvirAmi/e40c2315671d4b2793e667432264fca1 to your computer and use it in GitHub Desktop.
<?php
// If it's the blog
function is_blog() {
global $post;
$posttype = get_post_type( $post );
return ( ( ( is_archive() ) || ( is_author() ) || ( is_category() ) || ( is_home() ) || ( is_single() ) || ( is_tag() ) || ( is_search() ) ) && ( $posttype == 'post' ) ) ? true : false;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment