Skip to content

Instantly share code, notes, and snippets.

@waqashassan98
Created February 16, 2019 18:07
Show Gist options
  • Save waqashassan98/296781ca110b98a79728bebc4aa4175c to your computer and use it in GitHub Desktop.
Save waqashassan98/296781ca110b98a79728bebc4aa4175c to your computer and use it in GitHub Desktop.
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() ) {
$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