特定の幅より下にあるページ(WordPressの投稿/ページ)上のすべての画像にCSSクラスを追加したいと思います。
以下は機能しますが、setAttributeは各imgのすべてのクラス名を新しいものに置き換えています。
既存のクラスを置き換えずに、各画像に新しいクラスを追加するにはどうすればよいですか?
function add_class_to_small_images( $content ) {
$dom = new DOMDocument();
@$dom->loadHTML( $content );
$dom->preserveWhiteSpace = false;
$images = $dom->getElementsByTagName('img');
foreach ($images as $image) {
$width = $image->getAttribute('width');
if( $width < 480) {
$image->setAttribute('class', 'this-will-be-the-class'); // the new class
}
}
$content = $dom->saveHTML();
return $content;
}
add_filter('the_content', 'add_class_to_small_images');