Skip to content

Instantly share code, notes, and snippets.

@kellenmace
Last active May 22, 2020 04:10
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kellenmace/7f4c893576333d589c1b to your computer and use it in GitHub Desktop.
Save kellenmace/7f4c893576333d589c1b to your computer and use it in GitHub Desktop.
Load Template From WordPress Plugin
<?php
function km_include_gym_dashboard_page_template( $template ) {
if ( is_page( 'gym-dashboard' ) ) {
return plugin_dir_path( __FILE__ ) . 'templates/content-gym-dashboard.php';
}
return $template;
}
add_filter( 'template_include', 'km_include_gym_dashboard_page_template', 99 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment