Skip to content

Instantly share code, notes, and snippets.

@annalinneajohansson
Created February 11, 2014 12:40
Show Gist options
  • Save annalinneajohansson/8934129 to your computer and use it in GitHub Desktop.
Save annalinneajohansson/8934129 to your computer and use it in GitHub Desktop.
WordPress: Add theme template from plugin if it doesn't exist in the theme folder.
<?php
add_filter( 'template_include', 'my_prefix_template' );
function my_prefix_template( $template ) {
$template_filename = "foobar.php";
if ( !file_exists( get_stylesheet_directory() . "/" . $template_filename ) ) {
$template = plugin_dir_path( __FILE__ ) . '/' . $template_filename;
}
return $template;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment