Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active October 9, 2024 00:35
Show Gist options
  • Select an option

  • Save braddalton/8922c98d77afbfda72cb to your computer and use it in GitHub Desktop.

Select an option

Save braddalton/8922c98d77afbfda72cb to your computer and use it in GitHub Desktop.
add_filter( 'single_template', 'wpsites_single_post_type_template' );
function wpsites_single_post_type_template($single_template) {
global $post;
if ($post->post_type == 'post' ) {
$single_template = dirname( __FILE__ ) . '/single.php';
}
return $single_template;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment