add_filter('post_thumbnail_html', 'amp_img');
function amp_img($html){
$html = preg_replace('#^<img#i','<amp-img layout="responsive" ', $html);
$html = preg_replace('#width="1200"#i','width="360"', $html);
return $html;
}
add_filter('post_thumbnail_html', 'amp_img');
function amp_img($html){
$html = preg_replace('#^<img#i','<amp-img layout="responsive" ', $html);
$html = preg_replace('#width="1200"#i','width="360"', $html);
return $html;
}