WordPressのエディタの「メディアを追加」ボタンから画像を挿入すると、自動的にクラス名等がくっついてくる。
<img src="画像のURL" alt="" width="1024" height="576" class="alignnone size-full wp-image-*****" />
これがいらない、いちいちこれを書き換えるのが面倒
なので、これを挿入させない方法を調べてみた。
⇒下記のコードをfunction.phpに追記
//▼画像貼り付け時の自動挿入タグを削除▼
add_filter( 'image_send_to_editor', 'remove_image_attribute', 10 );
add_filter( 'post_thumbnail_html', 'remove_image_attribute', 10 );
function remove_image_attribute( $html ){
$html = preg_replace( '/(width|height)="\d*"\s/', '', $html );
$html = preg_replace( '/class=[\'"]([^\'"]+)[\'"]/i', '', $html );
return $html;
}
//▲画像貼り付け時の自動挿入タグを削除▲
きれいになった
<img src="画像のURL" alt="" />
コメント