Skip to content

Instantly share code, notes, and snippets.

@jimfloss
Last active January 30, 2018 17:41
Show Gist options
  • Save jimfloss/f117fd2f5cc022f444376e76d75cd36d to your computer and use it in GitHub Desktop.
Save jimfloss/f117fd2f5cc022f444376e76d75cd36d to your computer and use it in GitHub Desktop.
Force Template
<?php
function custom_page_template( $page_template ){
if ( is_page( 'product-configurator' ) ) {
$page_template = dirname( __FILE__ ) . '/product_configurator.php';
}
return $page_template;
}
add_filter( 'page_template', 'custom_page_template' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment