Skip to content

Instantly share code, notes, and snippets.

@abelsaad
Created June 9, 2021 07:14
Show Gist options
  • Save abelsaad/938065a2a2a2923c2d4f60f9f088ba6c to your computer and use it in GitHub Desktop.
Save abelsaad/938065a2a2a2923c2d4f60f9f088ba6c to your computer and use it in GitHub Desktop.
Custom Single page
<?php
$post = $wp_query->post;
if ( in_category('2') ) {
include(TEMPLATEPATH . '/single-play.php'); }
elseif ( in_category('3') ) {
include(TEMPLATEPATH . '/single-read.php'); }
elseif ( in_category('4') ) {
include(TEMPLATEPATH . '/single-download.php'); }
else {
include(TEMPLATEPATH . '/single.php');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment