Created
October 21, 2016 13:15
-
-
Save CrisHazzard/1cffbb693c87c52d86d729b26646168b to your computer and use it in GitHub Desktop.
Redirect Pages with /AMP/ to a different Wordpress Page Template on HikingGuy.com
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
// **************************************************************************************************** | |
// AMP support | |
define( 'AMP_QUERY_VAR', apply_filters( 'amp_query_var', 'amp' ) ); | |
add_rewrite_endpoint( AMP_QUERY_VAR, EP_PERMALINK ); | |
add_filter( 'template_include', 'amp_page_template', 99 ); | |
function amp_page_template( $template ) { | |
if( get_query_var( AMP_QUERY_VAR, false ) !== false ) { | |
if ( is_single() ) { | |
// amp-single.php is my page template for AMP | |
$template = get_template_directory() . '/amp-single.php'; | |
} | |
} | |
return $template; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment