1 2 3 4 5 6 7 8 9 |
//↓画像挿入時の不要アトリビュート削除 add_filter('image_send_to_editor', 'remove_img_att'); add_filter('post_thumbnail_html', 'remove_img_att'); function remove_img_att( $html ){ $html = preg_replace( '/(width|height)="\d*"\s/', '', $html ); $html = preg_replace( '/class=[\'"]([^\'"]+)[\'"]/i', '', $html ); return $html; } //↑画像挿入時の不要アトリビュート削除 |
【参考:WORDPRES Codex 日本語版】 add_filter