Skip to content

Instantly share code, notes, and snippets.

@abhilash0001
Created June 16, 2014 16:17
Show Gist options
  • Save abhilash0001/ce1c9e155137d6087236 to your computer and use it in GitHub Desktop.
Save abhilash0001/ce1c9e155137d6087236 to your computer and use it in GitHub Desktop.
Wordpress | Custom post types
/* ==========================================================================
If you are a big fan of keeping your code base clean, you can place
the code below in the functions.php for custom posts single template
========================================================================== */
function get_story_post_type_template($single_template) {
global $post;
if ($post->post_type == 'story') {
$single_template = dirname( __FILE__ ) . '/page-templates/single-post-templates/single-story.php';
}
return $single_template;
}
add_filter( "single_template", "get_story_post_type_template" ) ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment