Skip to content

Instantly share code, notes, and snippets.

@joecue
Created March 16, 2016 12:54
Show Gist options
  • Save joecue/a20995829e79e8e7b2be to your computer and use it in GitHub Desktop.
Save joecue/a20995829e79e8e7b2be to your computer and use it in GitHub Desktop.
WordPress - Theme file in Plugin
function my_event_template($single_template) {
global $post;
if ($post->post_type == 'event') {
return dirname( __FILE__ ) . '/single-event.php';
return $single_template;
}
add_filter( "single_template", "my_event_template" ) ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment