Skip to content

Instantly share code, notes, and snippets.

@y-krn
Last active December 9, 2016 09:05
Show Gist options
  • Save y-krn/bb03aade6544114f03c0da95a5917224 to your computer and use it in GitHub Desktop.
Save y-krn/bb03aade6544114f03c0da95a5917224 to your computer and use it in GitHub Desktop.
AMP Custom Template
<?php
add_filter( 'amp_post_template_file', function ( $file, $type, $post ) {
if ( 'single' === $type ) {
$file = dirname( __FILE__ ) . '/include/amp/single.php';
}
return $file;
}, 10, 3 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment