10
the_content boş paragraflar kaldırılsın mı?
Hey millet, sadece wordpress gönderimde boş paragraflar oluşturulmasını önlemek istiyorum. İçeriği el ile boşluk bırakmaya çalışırken bu oldukça sık olur. Bunun neden etkili olmadığını bilmiyorum? /*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'); …