Skip to content

Instantly share code, notes, and snippets.

@heyjones
Created April 24, 2018 23:18
Show Gist options
  • Save heyjones/dce8e143384cc6cdcccac9d241a9a5b8 to your computer and use it in GitHub Desktop.
Save heyjones/dce8e143384cc6cdcccac9d241a9a5b8 to your computer and use it in GitHub Desktop.
Simple Theme Wrapper for WordPress
add_filter( 'template_include', 'template_wrapper' );
function template_wrapper( $template ){
get_header();
include $template;
get_footer();
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment