sam-r
4/10/2015 - 5:08 PM

is_blog.php

function is_blog () {
	global  $post;
	$posttype = get_post_type($post );
	return ( ((is_archive()) || (is_author()) || (is_category()) || (is_home()) || (is_single()) || (is_tag())) && ( $posttype == 'post')  ) ? true : false ;
}


Usage: 

 <?php if (is_blog()) { echo 'You are on a blog page'; } ?>