WordPressで投稿画像に自動で付く

削除する

投稿画像に自動で付く<p>削除

// 投稿画像に自動で付く<p>を削除
function remove_p_on_images($content){
    return preg_replace('/<p>(\s*)(<img .* \/>)(\s*)<\/p>/iU', '\2', $content);
}
add_filter('the_content', 'remove_p_on_images');

シェアする

フォローする