Are you looking for a way to display different single template based on category? While there’s probably a plugin for this, we have created a quick code snippet that you can use to display different single template based on category in WordPress.
Instructions:
All you have to do is remove everything from your theme’s single.php file and add this code:
<?php $post = $wp_query->post; if ( in_category('features') ) { include(TEMPLATEPATH . '/single-features.php'); } else { include(TEMPLATEPATH . '/single-post.php'); } ?>
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly add code snippets in WordPress, so you don’t accidentally break your site.
If you liked this code snippet, please consider checking out our other articles on the site like: 28 best WordPress resume themes and how to create a multi-page form in WordPress.
Thanks
Dude thanks so much for this quick/simple solution!