10
the_contentから空の段落を削除しますか?
皆さん、私は単に私のワードプレスの投稿で空の段落が作成されないようにしたいだけです。これは、コンテンツを手動で配置しようとすると頻繁に発生します。 これがなぜ効かないのか分かりませんか? /*Remove empty paragraph tags from the_content*/ function removeEmptyParagraphs($content) { /*$pattern = "/<p[^>]*><\\/p[^>]*>/"; $content = preg_replace($pattern, '', $content);*/ $content = str_replace("<p></p>","",$content); return $content; } add_filter('the_content', 'removeEmptyParagraphs'); 編集/更新: 問題はこれのようです: function qanda($content) { // filters for [q=some question] and [a=some answer] // wraps it inside of <div class="qanda"><div class="question"> </div><div class="answer"> …