proweb
7/24/2013 - 7:00 PM

Conditional tag for blog-related pages

Conditional tag for blog-related pages

<?php


function is_blog() {
  if (is_home() || is_singular('post') || is_post_type_archive('post'))
		return true;
	else return false;
}

if(is_blog()) {
    //the page is blog related
}
?>