I’d like a way to target only blog-area pages for specific formatting.
So far,
<?php if (is_home() || is_single() || is_category() || is_archive() ) { ?>
works okay, but is there a way to combine all of those into one single function to shorten it up a bit? so maybe in the functions it would set is_blog() to equal those four (or however many I want).
Seems a bit simple and probably is…. I just dont know what to search for to find information on this. Thanks!!