WordPressの
AMP対応⚡️
宇都宮 諒(@ryo511)
WordPressもくもく勉強会@日本橋 #12
2017-12-09
モバイルで検索してるとたまに見るやつ
add_filter( 'amp_post_template_file', 'amp_set_custom_template', 10, 3 );
function amp_set_custom_template( $file, $type, $post ) {
if ( 'single' === $type ) {
$file = dirname( __FILE__ ) . '/amp/single.php';
}
return $file;
}