Skip to content

Instantly share code, notes, and snippets.

@jesders
Created April 24, 2020 13:23
Show Gist options
  • Save jesders/3a6530a1fc399245c09ab73e64db2f07 to your computer and use it in GitHub Desktop.
Save jesders/3a6530a1fc399245c09ab73e64db2f07 to your computer and use it in GitHub Desktop.
Setting single post template in WordPress
https://codex.wordpress.org/Plugin_API/Filter_Reference/single_template
<?php
function get_custom_post_type_template( $single_template ) {
global $post;
if ( 'my_post_type' === $post->post_type ) {
$single_template = dirname( __FILE__ ) . '/post-type-template.php';
}
return $single_template;
}
add_filter( 'single_template', 'get_custom_post_type_template' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment