Skip to content

Instantly share code, notes, and snippets.

@dkruchok
Last active August 29, 2015 14:18
Show Gist options
  • Save dkruchok/e40ea3418e1746190daf to your computer and use it in GitHub Desktop.
Save dkruchok/e40ea3418e1746190daf to your computer and use it in GitHub Desktop.
WordPress
<?php
$post = $wp_query->post;
if (in_category('cat_label_1')) {
include(TEMPLATEPATH.'/single-cat_label_1.php');
} elseif (in_category('cat_label_2')) {
include(TEMPLATEPATH.'/single-cat_label_2.php');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment