下記コードをfunction.phpに記述

//srcset内でショートコード実行
function my_wp_kses_allowed_html( $tags, $context ) {
	$tags['img']['srcset'] = true;
	return $tags;
}
add_filter( 'wp_kses_allowed_html', 'my_wp_kses_allowed_html', 10, 2 );

latest post

0