10
ลบย่อหน้าที่ว่างเปล่าออกจาก the_content หรือไม่
เฮ้พวกฉันแค่ต้องการป้องกันการสร้างย่อหน้าที่ว่างในโพสต์ WordPress ของฉัน ที่เกิดขึ้นค่อนข้างบ่อยเมื่อพยายามพื้นที่เนื้อหาด้วยตนเอง ฉันไม่รู้ว่าทำไมสิ่งนี้จึงไม่มีผล /*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 …