Single post templates
-
Hello,
I am using this solution: http://wordpress.org/support/topic/have-a-second-singlephp-file-for-different-single-post-look?replies=29
Like this:
<?php $post = $wp_query->post; if ( in_category('5') ) { include("single2.php"); } else { include("single1.php"); } ?>to give a different look to posts of a certain category. I need to do this for 2 categories, not just 1. How would I add another category to this?
Any help is appreciated! Thanks!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Single post templates’ is closed to new replies.