Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save drivendevelopment/30a1c9be288155753682e800a21b3a0a to your computer and use it in GitHub Desktop.

Select an option

Save drivendevelopment/30a1c9be288155753682e800a21b3a0a to your computer and use it in GitHub Desktop.
Override the location of the post template.
<?php
/**
* Load a custom template for single posts.
*/
add_filter( 'template_include', function( $template ){
if ( is_single() && 'post' == get_post_type() ) {
$template = dirname( __FILE__ ) . '/templates/single-post.php';
}
return $template;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment