Created
April 24, 2018 23:18
-
-
Save heyjones/dce8e143384cc6cdcccac9d241a9a5b8 to your computer and use it in GitHub Desktop.
Simple Theme Wrapper for WordPress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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