पृष्ठांकित लिंक कस्टम शीर्षक कैसे दें?


14

मैंने <! - nextpage ->कोड का उपयोग करके अपनी पोस्ट सामग्री को म्यूटेंट पेजों में विभाजित कर दिया है । मैं नियमित रूप से 1,2,3 के बजाय अपने पृष्ठबद्ध लिंक को अपना शीर्षक देना चाहता हूं। मैं यह कैसे कर सकता हूँ? इस डॉक पर कारण https://codex.wordpress.org/Styling_Page- यह केवल प्रत्यय या उपसर्ग जोड़ने के लिए विधि का उल्लेख करता है। मैं बस प्रत्येक पृष्ठांकित संख्या को अपने स्वयं के कस्टम शीर्षक देना चाहता हूं

जवाबों:


17

यहाँ प्रपत्र के पृष्ठ पर अंक लगाना का समर्थन करने का एक तरीका है:

<!--nextpage(.*?)?--> 

कोर समर्थन करता है के रूप में एक simlar तरीके से <!--more(.*?)?-->

यहाँ एक उदाहरण है:

<!--nextpage Planets -->
Let's talk about the Planets
<!--nextpage Mercury -->
Exotic Mercury
<!--nextpage Venus-->
Beautiful Venus
<!--nextpage Earth -->
Our Blue Earth
<!--nextpage Mars -->
The Red Planet

उत्पादन के समान:

पदवी पदवी

यह ट्वेंटी सोलह विषय पर परीक्षण किया गया था , जहाँ मुझे पैडिंग को समायोजित करना था और थोड़ी सी चौड़ाई :

.page-links a, .page-links > span {
    width:   auto;
    padding: 0 5px;
}

डेमो प्लगइन

यहाँ एक डेमो प्लगइन का उपयोग करता है है content_pagination, wp_link_pages_link, pre_handle_404और wp_link_pages_argsफिल्टर के इस extenstion समर्थन करने के लिए NextPage मार्कर ( पीएचपी 5.4+ ):

<?php
/**
 * Plugin Name: Content Pagination Titles
 * Description: Support for &lt;!--nextpage(.*?)?--&gt; in the post content
 * Version:     1.0.1
 * Plugin URI:  http://wordpress.stackexchange.com/a/227022/26350
 */

namespace WPSE\Question202709;

add_action( 'init', function()
{
    $main = new Main;
    $main->init();
} );

class Main
{
    private $pagination_titles;

    public function init()
    {
        add_filter( 'pre_handle_404',       [ $this, 'pre_handle_404' ],        10, 2       );
        add_filter( 'content_pagination',   [ $this, 'content_pagination' ],    -1, 2       );
        add_filter( 'wp_link_pages_link',   [ $this, 'wp_link_pages_link' ],    10, 2       );
        add_filter( 'wp_link_pages_args',   [ $this, 'wp_link_pages_args' ],    PHP_INT_MAX );
    }

    public function content_pagination( $pages, $post )
    {
        // Empty content pagination titles for each run
        $this->pagination_titles = [];

        // Nothing to do if the post content doesn't contain pagination titles
        if( false === stripos( $post->post_content, '<!--nextpage' ) )
            return $pages;

        // Collect pagination titles
        preg_match_all( '/<!--nextpage(.*?)?-->/i', $post->post_content, $matches );
        if( isset( $matches[1] ) )
            $this->pagination_titles = $matches[1];     

        // Override $pages according to our new extended nextpage support
        $pages = preg_split( '/<!--nextpage(.*?)?-->/i', $post->post_content );

        // nextpage marker at the top
        if( isset( $pages[0] ) && '' == trim( $pages[0] ) )
        {
            // remove the empty page
            array_shift( $pages );
        }       
        // nextpage marker not at the top
        else
        {
            // add the first numeric pagination title 
            array_unshift( $this->pagination_titles, '1' );
        }           
        return $pages;
    }

    public function wp_link_pages_link( $link, $i )
    {
        if( ! empty( $this->pagination_titles ) )
        {
            $from  = '{{TITLE}}';
            $to    = ! empty( $this->pagination_titles[$i-1] ) ? $this->pagination_titles[$i-1] : $i;
            $link  = str_replace( $from, $to, $link );
        }

        return $link;
    }

    public function wp_link_pages_args( $params )
    {       
        if( ! empty( $this->pagination_titles ) )
        {
            $params['next_or_number'] = 'number';
            $params['pagelink'] = str_replace( '%', '{{TITLE}}', $params['pagelink'] );
        }
        return $params;
    }

    /**
     * Based on the nextpage check in WP::handle_404()
     */
    public function pre_handle_404( $bool, \WP_Query $q )
    {
        global $wp;

        if( $q->posts && is_singular() )
        {
            if ( $q->post instanceof \WP_Post ) 
                $p = clone $q->post;

            // check for paged content that exceeds the max number of pages
            $next = '<!--nextpage';
            if (   $p 
                 && false !== stripos( $p->post_content, $next ) 
                 && ! empty( $wp->query_vars['page'] ) 
            ) {
                $page = trim( $wp->query_vars['page'], '/' );
                $success = (int) $page <= ( substr_count( $p->post_content, $next ) + 1 );

                if ( $success )
                {
                    status_header( 200 );
                    $bool = true;
                }
            }
        }
        return $bool;
    }

} // end class

स्थापना : /wp-content/plugins/content-pagination-titles/content-pagination-titles.phpफ़ाइल बनाएं और प्लगइन को सक्रिय करें। हमेशा किसी भी प्लगइन का परीक्षण करने से पहले बैकअप के लिए एक अच्छा विचार है।

यदि शीर्ष अगला पृष्ठ मार्कर गायब है, तो पहला पृष्ठांकन शीर्षक संख्यात्मक है।

साथ ही यदि कोई कंटेंट पेजिनेशन टाइटल गायब है <!--nextpage-->, तो यह उम्मीद के मुताबिक ही न्यूमेरिक होगा।

मैं पहले कक्षा में अगले पृष्ठ बग के बारे में भूल गया था WP, यह दिखाता है कि क्या हम content_paginationफ़िल्टर के माध्यम से पृष्ठों की संख्या को संशोधित करते हैं । यह हाल ही में # 35562 में यहां @PieterGoosen द्वारा रिपोर्ट किया गया था ।

हम अपने डेमो प्लगइन में एक pre_handle_404फिल्टर कॉलबैक के साथ इसे दूर करने की कोशिश करते हैं , यहां की WPकक्षा की जांच के आधार पर , जहां हम इसके बजाय की जांच करते हैं ।<!--nextpage<!--nextpage-->

टेस्ट

यहाँ कुछ और परीक्षण हैं:

टेस्ट # 1

<!--nextpage-->
Let's talk about the Planets
<!--nextpage-->
Exotic Mercury
<!--nextpage-->
Beautiful Venus
<!--nextpage-->
Our Blue Earth
<!--nextpage-->
The Red Planet

1 चयनित के लिए आउटपुट :

test1

जैसा सोचा था।

टेस्ट # 2

Let's talk about the Planets
<!--nextpage-->
Exotic Mercury
<!--nextpage-->
Beautiful Venus
<!--nextpage-->
Our Blue Earth
<!--nextpage-->
The Red Planet

5 चयनित के लिए आउटपुट :

test2

जैसा सोचा था।

टेस्ट # 3

<!--nextpage-->
Let's talk about the Planets
<!--nextpage Mercury-->
Exotic Mercury
<!--nextpage-->
Beautiful Venus
<!--nextpage Earth -->
Our Blue Earth
<!--nextpage Mars -->
The Red Planet

3 चयनित के लिए आउटपुट :

test3

जैसा सोचा था।

टेस्ट # 4

Let's talk about the Planets
<!--nextpage Mercury-->
Exotic Mercury
<!--nextpage Venus-->
Beautiful Venus
<!--nextpage Earth -->
Our Blue Earth
<!--nextpage Mars -->
The Red Planet

पृथ्वी के साथ आउटपुट चयनित:

test4

जैसा सोचा था।

वैकल्पिक

एक और तरीका यह होगा कि इसके साथ जोड़े जाने वाले पृष्ठांकन शीर्षक का समर्थन करने के लिए इसे संशोधित किया जाए:

<!--pt Earth-->

सभी पृष्ठांकन शीर्षकों ( pts ) के लिए एकल टिप्पणी का समर्थन करना भी आसान हो सकता है :

<!--pts Planets|Mercury|Venus|Earth|Mars -->

या शायद कस्टम क्षेत्रों के माध्यम से?


यह दिलचस्प और काफी गतिशील दिखता है। ;-)
पीटर गोयन ने

+1 क्लोजर तकनीक के लिए;) इससे पहले मुझे केवल इतना पता था कि हम apply_filterतर्कों तक सीमित हैं : D
सुमित

1
यह काम जब WPSE को यहां कम कोड के टुकड़े लेखन किया जा सकता है, लेकिन हम भी सिर्फ इस एक उचित प्लगइन ;-) @Sumit में समर्थन करने के लिए एक वर्ग लिख सकता है
birgire

@PieterGoosen मैं पहली बार # 35562 बग के बारे में भूल गया , pre_handle_404फ़िल्टर के माध्यम से इसे समायोजित करने की कोशिश की ।
बिरगायर

@irgire मैंने उस मुद्दे के बारे में सोचा था, लेकिन उस मुद्दे के प्रभाव की पुष्टि या अवहेलना करने के लिए कुछ भी परीक्षण नहीं कर सका, इसलिए मुझे अन्य परियोजनाओं के साथ पकड़ा गया है जिनके लिए पीसी की आवश्यकता नहीं है। ऐसा लगता है कि बग लंबे समय तक रहेगा। मैंने पहले नए और पुराने संस्करणों पर परीक्षण किया था, और मेरा निष्कर्ष यह है कि बग पैदा करने वाले कोड को कोर से हटाया जा सकता है जब तक कि कोई उचित समाधान नहीं ढूंढता है ... ;-)
पीटर गोयेन

5

आप फ़िल्टर का उपयोग कर सकते हैं wp_link_pages_link

पहले हमारे कस्टम स्ट्रिंग प्लेसहोल्डर को पास करें (यह स्ट्रिंग युक्त को छोड़कर आपको पसंद किया जा सकता है %, बस अब मैं इसका उपयोग कर रहा हूं #custom_title#)।

wp_link_pages( array( 'pagelink' => '#custom_title#' ) );

फिर हमारे फ़िल्टर को इसमें जोड़ें functions.php। कॉलबैक फ़ंक्शन में, शीर्षक की एक सरणी बनाते हैं, फिर वर्तमान पृष्ठ संख्या की जांच करते हैं और वर्तमान पृष्ठ संख्या के #custom_title#अनुरूप मूल्य के साथ प्रतिस्थापित करते हैं।

उदाहरण:-

add_filter('wp_link_pages_link', 'wp_link_pages_link_custom_title', 10, 2);
/**
 * Replace placeholder with custom titles
 * @param string $link Page link HTML
 * @param int $i Current page number
 * @return string $link Page link HTML
 */
function wp_link_pages_link_custom_title($link, $i) {

    //Define array of custom titles
    $custom_titles = array(
        __('Custom title A', 'text-domain'),
        __('Custom title B', 'text-domain'),
        __('Custom title C', 'text-domain'),
    );

    //Default title when title is not set in array
    $default_title = __('Page', 'text-domain') . ' ' . $i; 

    $i--; //Decrease the value by 1 because our array start with 0

    if (isset($custom_titles[$i])) { //Check if title exist in array if yes then replace it
        $link = str_replace('#custom_title#', $custom_titles[$i], $link);
    } else { //Replace with default title
        $link = str_replace('#custom_title#', $default_title, $link);
    }

    return $link;
}
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.