WordPress
सामग्री और अंश से ऑटो लाइन तोड़ता है
खोज…
परिचय
उन साइटों के लिए जो संपादक या हाथों से HTML पर भरोसा करते हैं, जिन्हें आप अपने आप को कोड करना चाहते हैं, ऑटो लाइन टूटना एक झुंझलाहट हो सकती है। आप इन फ़िल्टर को हटाकर उन्हें अक्षम कर सकते हैं।
टिप्पणियों
इन्हें सीधे शामिल फ़ाइल में निष्पादित किया जाना चाहिए। चाहे वह function.php में हो या किसी अन्य फ़ाइल में हो, इन्हें हुक में नहीं लपेटा जा सकता। वे init या मेरे द्वारा अब तक मिले किसी भी अन्य पर काम नहीं करेंगे।
उन्हें सीधे पेज जैसे टेम्पलेट में भी शामिल किया जा सकता है। केवल उस टेम्पलेट को निष्पादित करने के लिए।
नोट: इस विषय में किसी विषय या विषय को शामिल न करें (जब तक कि यह डिफ़ॉल्ट रूप से अक्षम न हो, जब तक कि उपयोगकर्ता निर्दिष्ट न हो, इसमें शामिल फ़ाइल शामिल नहीं है)।
यह एक ऐसी साइट में शामिल करने के लिए बुरा अभ्यास है जिसे आप नियंत्रित नहीं करते हैं क्योंकि यह किसी भी अन्य थीम या प्लगइन्स के आउटपुट को तोड़ सकता है।
फ़िल्टर निकालें
// Remove the auto-paragraph and auto-line-break from the content
remove_filter( 'the_content', 'wpautop' );
// Remove the auto-paragraph and auto-line-break from the excerpt
remove_filter( 'the_excerpt', 'wpautop' );
फ़िल्टर हटाने का कार्य
/**
* Remove the automatic line breaks from content and excerpts.
*
* @since 1.0.0
*/
function remove_content_auto_line_breaks() {
// Remove the auto-paragraph and auto-line-break from the content
remove_filter( 'the_content', 'wpautop' );
// Remove the auto-paragraph and auto-line-break from the excerpt
remove_filter( 'the_excerpt', 'wpautop' );
}
// Execute the function
remove_content_auto_line_breaks();