jennahines
2/17/2014 - 3:07 PM

Wordpress - check if on a blog page

Wordpress - check if on a blog page

<?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 ;
}