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'); 편집 / …