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