Append class to posts page

In your theme’s functions file, use the body_class filter to add new classes: function wpse_282694_body_class( $classes ) { if ( is_home() ) { $classes[] = ‘blog’; } return $classes; } add_filter( ‘body_class’, ‘wpse_282694_body_class’ ); If your category archives, tag archives, date archives and search results also need the same styling, which is fairly commin, check … Read more

Where can I find my blog page?

That’s exactly what you need to do. The home.php file is used if you’re using the main page of your site to display posts or if you have created a separate static page – your Blog page in this case. Perhaps you find it crude but it’s perfectly normal to do this. If you don’t … Read more