Skip to content

Instantly share code, notes, and snippets.

@seb-thomas
Created March 14, 2012 13:38
Show Gist options
  • Save seb-thomas/2036534 to your computer and use it in GitHub Desktop.
Save seb-thomas/2036534 to your computer and use it in GitHub Desktop.
WP single post category switch
<?php
$post = $wp_query->post;
if ( in_category('features') ) {
include(TEMPLATEPATH . '/single-features.php');
} else {
include(TEMPLATEPATH . '/single-single.php');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment