LoginSignup
0
0

More than 3 years have passed since last update.

【wordpress】メディア(画像)挿入時に勝手に入る高さと横幅、classを削除

Posted at

わかる方向けコピペセット
function.phpに下記を記述

add_filter('post_thumbnail_html', 'remove_media_attribute', 10);
add_filter('image_send_to_editor', 'remove_media_attribute', 10);

function remove_media_attribute($html)
{
    $html = preg_replace('/(width|height)="\d*"\s/', "", $html);
    $html = preg_replace('/class=[\'"]([^\'"]+)[\'"]/i', '', $html);
    return $html;
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0