WordPress
कस्टम अंश excerpt_length और excerpt_more के साथ
खोज…
सीमा अंश 50 शब्द तक
निम्नलिखित कोड को functions.php में रखें:
function themify_custom_excerpt_length( $length ) {
return 50;
}
add_filter( 'excerpt_length', 'themify_custom_excerpt_length', 999 );
प्राथमिकता के रूप में 999 का उपयोग यह सुनिश्चित करने के लिए करें कि फ़ंक्शन डिफ़ॉल्ट वर्डप्रेस फ़िल्टर के बाद चलता है, अन्यथा यह जो यहां सेट है उसे ओवरराइड करेगा।
अंश के अंत में एक और अधिक पढ़ें लिंक जोड़ना
ऐसा करने के लिए, निम्न कोड को functions.php में रखें :
function custom_excerpt_more($more) {
return '<a href="'. get_permalink($post->ID) . '">Read More</a>';
}
add_filter('excerpt_more', 'custom_excerpt_more');
परिणाम इस तरह दिखना चाहिए:
अंश के अंत में कुछ डॉट्स जोड़ना
हमारे कार्यों में
function new_excerpt_more( $more ) {
return '.....';
}
add_filter('excerpt_more', 'new_excerpt_more');
हमें यह प्राप्त करना चाहिए:
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow