私は簡単なコードを持っています:
function filter_widgets($content) {
global $post;
if($post->ID = 1210) {
$content = preg_replace('/<p>\s*(<iframe .*>*.<\/iframe>)\s*<\/p>/iU', '', $content);
}
return $content;
}
add_filter('the_content', 'filter_widgets');
しかし、postId = 1210を実行すると、iframeができなくなります。修正するにはどうすればよいですか?