Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Scordavis/0047004509aabc5debd464cad70005d0 to your computer and use it in GitHub Desktop.
Save Scordavis/0047004509aabc5debd464cad70005d0 to your computer and use it in GitHub Desktop.
<?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