Wordpress Jetpack の「メールで投稿」機能を使用して作成された画像をより細かく制御する方法を見つけた人はいますか?
理想的には、電子メールで投稿する場合、画像を電子メールに添付されたものと同じサイズで表示したいと考えています。メールで投稿する場合は、1024x1024 に最大化して投稿するだけです。
次のコードを functions.php に挿入することで、これを修正できます。
add_filter( 'post_thumbnail_html', 'remove_width_attribute', 10 );
add_filter( 'the_content', 'remove_width_attribute', 10 );
function remove_width_attribute( $html ) {
$html = preg_replace( '/(width|height)="\d*"\s/', "", $html );
return $html;
}
ここで説明したように: http://css-tricks.com/snippets/wordpress/remove-width-and-height-attributes-from-inserted-images/