सत्य पृष्ठों और स्थिर फ्रंट पृष्ठों पर pre_get_posts का उपयोग करना


19

मैंने pre_get_postsसच्चे पृष्ठों और स्थैतिक पृष्ठों पर कैसे उपयोग किया जाए, इस पर काफी गहन शोध किया है और ऐसा लगता है कि कोई मूर्ख प्रमाण विधि नहीं है।

मुझे आज तक जो सबसे अच्छा विकल्प मिला, वह स्टाकेवरफ्लो पर @birgire द्वारा की गई पोस्ट से था । मैंने इसे एक डेमो क्लास में फिर से लिखा है और कोड को थोड़ा अधिक गतिशील बना दिया है

class PreGeTPostsForPages
{
    /**
     * @var string|int $pageID
     * @access protected     
     * @since 1.0.0
     */
    protected $pageID;

    /**
     * @var bool $injectPageIntoLoop
     * @access protected     
     * @since 1.0.0
    */
    protected $injectPageIntoLoop;

    /**
     * @var array $args
     * @access protected     
     * @since 1.0.0
     */
    protected $args;

    /**
     * @var int $validatedPageID
     * @access protected     
     * @since 1.0.0
     */
    protected $validatedPageID = 0;

    /**
     * Constructor
     *
     * @param string|int $pageID = NULL
     * @param bool $injectPageIntoLoop = false
     * @param array| $args = []
     * @since 1.0.0
     */     
    public function __construct( 
        $pageID             = NULL, 
        $injectPageIntoLoop = true, 
        $args               = [] 
    ) { 
        $this->pageID             = $pageID;
        $this->injectPageIntoLoop = $injectPageIntoLoop;
        $this->args               = $args;
    }

    /**
     * Private method validatePageID()
     *
     * Validates the page ID passed
     *
     * @since 1.0.0
     */
    private function validatePageID()
    {
        $validatedPageID       = filter_var( $this->pageID, FILTER_VALIDATE_INT );
        $this->validatedPageID = $validatedPageID;
    }

    /**
     * Public method init()
     *
     * This method is used to initialize our pre_get_posts action
     *
     * @since 1.0.0
     */
    public function init()
    {
        // Load the correct actions according to the value of $this->keepPageIntegrity
        add_action( 'pre_get_posts', [$this, 'preGetPosts'] );
    }

    /**
     * Protected method pageObject()
     *
     * Gets the queried object to use that as page object
     *
     * @since 1.0.0
     */
    protected function pageObject()
    {
        global $wp_the_query;
        return $wp_the_query->get_queried_object();
    }

    /**
     * Public method preGetPosts()
     *
     * This is our call back method for the pre_get_posts action.
     * 
     * The pre_get_posts action will only be used if the page integrity is
     * not an issue, which means that the page will be altered to work like a
     * normal archive page. Here you have the option to inject the page object as
     * first post through the_posts filter when $this->injectPageIntoLoop === true
     *
     * @since 1.0.0
     */
    public function preGetPosts( \WP_Query $q )
    {
        // Make sure that we are on the main query and the desired page
        if (    is_admin() // Only run this on the front end
             || !$q->is_main_query() // Only target the main query
             || !is_page( $this->validatedPageID ) // Run this only on the page specified
        )
            return;

        // Remove the filter to avoid infinte loops
        remove_filter( current_filter(), [$this, __METHOD__] );

        // METHODS:
        $this->validatePageID();
        $this->pageObject();

        $queryArgs             = $this->args;

        // Set default arguments which cannot be changed 
        $queryArgs['pagename'] = NULL;

        // We have reached this point, lets do what we need to do
        foreach ( $queryArgs as $key=>$value ) 
            $q->set( 
                filter_var( $key, FILTER_SANITIZE_STRING ),
                $value // Let WP_Query handle the sanitation of the values accordingly
            );

        // Set $q->is_singular to 0 to get pagination to work
        $q->is_singular = false;

        // FILTERS:
        add_filter( 'the_posts',        [$this, 'addPageAsPost'],   PHP_INT_MAX );
        add_filter( 'template_include', [$this, 'templateInclude'], PHP_INT_MAX );  
    }

    /**
     * Public callback method hooked to 'the_posts' filter
     * This will inject the queried object into the array of posts
     * if $this->injectPageIntoLoop === true
     *
     * @since 1.0.0
     */
    public function addPageAsPost( $posts )
    {
        // Inject the page object as a post if $this->injectPageIntoLoop == true
        if ( true === $this->injectPageIntoLoop )
            return array_merge( [$this->pageObject()], $posts );

        return $posts;
    }

    /**
     * Public call back method templateInclude() for the template_include filter
     *
     * @since 1.0.0
     */
    public function templateInclude( $template )
    {
        // Remove the filter to avoid infinte loops
        remove_filter( current_filter(), [$this, __METHOD__] );

        // Get the page template saved in db
        $pageTemplate = get_post_meta( 
            $this->validatedPageID, 
            '_wp_page_template', 
            true 
        );

        // Make sure the template exists before we load it, but only if $template is not 'default'
        if ( 'default' !== $pageTemplate ) {
            $locateTemplate = locate_template( $pageTemplate );
            if ( $locateTemplate )
                return $template = $locateTemplate;
        }

        /**
         * If $template returned 'default', or the template is not located for some reason,
         * we need to get and load the template according to template hierarchy
         *
         * @uses get_page_template()
         */
        return $template = get_page_template();
    }
}

$init = new PreGeTPostsForPages(
    251, // Page ID
    false,
    [
        'posts_per_page' => 3,
        'post_type'      => 'post'
    ]
);
$init->init();

यह अच्छी तरह से काम करता है और पृष्ठ के रूप में मेरे अपने पृष्ठांकन समारोह का उपयोग करके अपेक्षित है ।

मुद्दे:

फ़ंक्शन के कारण, मैं पृष्ठ अखंडता को ढीला कर देता हूं, जो अन्य ऑब्जेक्ट को स्टोर किए गए पृष्ठ ऑब्जेक्ट पर निर्भर करता है $post$postइससे पहले कि लूप लूप में पहली पोस्ट $postपर सेट हो जाए और लूप के बाद लूप में आखिरी पोस्ट पर सेट हो जाए, जो अपेक्षित है। मुझे जो चाहिए वह $postवर्तमान पृष्ठ ऑब्जेक्ट पर सेट किया गया है, अर्थात, क्वेरिड ऑब्जेक्ट।

इसके अलावा, $wp_the_query->postऔर $wp_query->postलूप में पहली पोस्ट रखती है और एक सामान्य पृष्ठ पर के रूप में queried ऑब्जेक्ट नहीं

लूप से पहले और बाद में अपने ग्लोबल्स की जांच करने के लिए मैं ( मेरी कक्षा के बाहर ) का उपयोग करता हूं

add_action( 'wp_head',   'printGlobals' );
add_action( 'wp_footer', 'printGlobals' );
function printGlobals()
{
    $global_test  = 'QUERIED OBJECT: ' . $GLOBALS['wp_the_query']->queried_object_id . '</br>';
    $global_test .= 'WP_THE_QUERY: ' . $GLOBALS['wp_the_query']->post->ID . '</br>';
    $global_test .= 'WP_QUERY: ' . $GLOBALS['wp_query']->post->ID . '</br>';
    $global_test .= 'POST: ' . $GLOBALS['post']->ID . '</br>';
    $global_test .= 'FOUND_POSTS: ' . $GLOBALS['wp_query']->found_posts . '</br>';
    $global_test .= 'MAX_NUM_PAGES: ' . $GLOBALS['wp_query']->max_num_pages . '</br>';

    ?><pre><?php var_dump( $global_test ); ?></pre><?php
}

LOOP से पहले:

लूप से पहले, समस्या को आंशिक रूप $injectPageIntoLoopसे सही पर सेट करके हल किया जाता है जो लूप में पहले पृष्ठ के रूप में पृष्ठ ऑब्जेक्ट को इंजेक्ट करता है। यह काफी उपयोगी है यदि आपको अनुरोधित पोस्ट से पहले पृष्ठ की जानकारी दिखाने की आवश्यकता है, लेकिन यदि आप ऐसा नहीं चाहते हैं, तो आप खराब हैं।

मैं सीधे ग्लोबल्स को हैक करके लूप से पहले मुद्दे को हल कर सकता हूं, जो मुझे वास्तव में पसंद नहीं है। मैं wpअपनी preGetPostsविधि के अंदर निम्नलिखित विधि को हुक करता हूं

public function wp()
{
    $page                          = get_post( $this->pageID );
    $GLOBALS['wp_the_query']->post = $page;
    $GLOBALS['wp_query']           = $GLOBALS['wp_the_query'];
    $GLOBALS['post']               = $page;
}

और preGetPostsविधि के अंदर

add_action( 'wp', [$this, 'wp'] );

इस से, $wp_the_query->post, $wp_query->postऔर $postसभी रखती पेज वस्तु।

लोट के बाद

यह वह जगह है जहां मेरा बड़ा मुद्दा है, लूप के बाद। wpहुक और विधि के माध्यम से ग्लोबल्स को हैक करने के बाद ,

  • $wp_the_query->postऔर $wp_query->postउम्मीद के मुताबिक लूप में पहली पोस्ट पर वापस सेट है

  • $post लूप में अंतिम पोस्ट पर सेट है।

मुझे क्या चाहिए कि तीनों को क्वेरिड ऑब्जेक्ट / करंट पेज ऑब्जेक्ट पर सेट किया जाए।

मैंने कार्रवाई wpकरने के तरीके को हुक करने की कोशिश की loop_endहै, जो काम नहीं करता है। कार्य wpकरने की विधि को हुक करना get_sidebar, लेकिन यह बहुत देर हो चुकी है।

add_action( 'get_sidebar', [$this, 'wp'] );

चल रहा है printGlobals()टेम्पलेट के रूप में पुष्टि की है कि में पाश के बाद सीधे $wp_the_query->postऔर $wp_query->postअभी भी पहली पोस्ट करने के लिए और स्थापित कर रहे हैं $postपिछले पोस्ट करने के लिए।

मैं wpटेम्पलेट के अंदर लूप के बाद विधि के अंदर कोड को मैन्युअल रूप से जोड़ सकता हूं , लेकिन विचार सीधे टेम्पलेट फ़ाइलों को बदलने के लिए नहीं है क्योंकि विषयों के बीच एक प्लगइन में वर्ग को हस्तांतरणीय होना चाहिए।

वहाँ इस मुद्दे जहां एक रन हल करने के लिए किसी भी उचित तरीका है pre_get_postsएक सच्चे पेज और स्थिर पहले पन्ने पर है और अभी भी की अखंडता को बनाए रखने के $wp_the_query->post, $wp_query->postऔर $post( पूछे वस्तु के लिए उन सेट होने से पहले और पाश के बाद)।

संपादित करें

मुझे क्या चाहिए और मुझे इसकी आवश्यकता क्यों है, इस बारे में भ्रम होने लगता है

क्या चाहिए मुझे

मैं के मूल्यों को बनाए रखने की जरूरत है $wp_the_query->post, $wp_query->postऔर $postभले ही टेम्पलेट भर में, और कहा कि मूल्य पूछे वस्तु होना चाहिए। इस स्तर पर, मेरे द्वारा पोस्ट किए गए कोड के साथ, उन तीन चर के मान पृष्ठ ऑब्जेक्ट को धारण नहीं करते हैं, बल्कि लूप में पोस्ट की वस्तुओं को पोस्ट करते हैं। मुझे उम्मीद है कि यह काफी स्पष्ट है।

मैंने कोड पोस्ट किया है जिसका उपयोग आप इन चर का परीक्षण करने के लिए कर सकते हैं

मुझे इसकी आवश्यकता क्यों है

मुझे pre_get_postsपूर्ण पृष्ठ कार्यक्षमता को बदले बिना पृष्ठ टेम्पलेट और स्थिर फ्रंट पेज के माध्यम से पोस्ट जोड़ने के लिए एक विश्वसनीय तरीके की आवश्यकता है । इस स्तर पर, जैसे ही प्रश्न खड़ा होता है, यह लूप के बाद मेरे ब्रेडक्रंब फीचर और संबंधित पेज फीचर को तोड़ देता है, $postजिसके कारण "गलत" पोस्ट ऑब्जेक्ट होता है।

सबसे बढ़कर, मैं सीधे पेज टेम्प्लेट को बदलना नहीं चाहता। मैं टेम्पलेट के किसी भी संशोधन के बिना एक पृष्ठ टेम्पलेट में पोस्ट जोड़ने में सक्षम होना चाहता हूं


आप क्या करने की कोशिश कर रहे हैं, आपके लक्ष्य या कार्यात्मक आवश्यकताएं? जहाँ तक मैं बता सकता हूँ आप इसे कहीं भी राज्य नहीं करते हैं।
adelval

जवाबों:


13

मुझे आखिरकार यह काम मिल गया, लेकिन मेरे प्रश्न में कोड के साथ नहीं। मैंने उस पूरे विचार को पूरी तरह से समाप्त कर दिया और एक नई दिशा में जाना शुरू कर दिया।

ध्यान दें:

अगर कोई भी कभी भी मेरे प्रश्न में मुद्दों को हल करने में सक्षम है, तो एक उत्तर पोस्ट करने के लिए स्वतंत्र महसूस करें। इसके अलावा, यदि आपके पास कोई अन्य समाधान है, तो उत्तर देने के लिए स्वतंत्र महसूस करें।

संशोधित क्लास और समाधान:

मैंने यहाँ क्या करने की कोशिश की, मुख्य प्रश्न को पूरी तरह से बदलने के बजाय पोस्ट इंजेक्शन का उपयोग करना था, और उपरोक्त सभी मुद्दों के साथ फंस गया, जिसमें (ए) सीधे ग्लोबल्स को बदलना, (बी) वैश्विक मूल्य मुद्दे में चल रहा है, और (सी) पृष्ठ टेम्पलेट्स को पुन: असाइन करना।

पोस्ट इंजेक्शन का उपयोग करके, मैं पूर्ण पोस्ट अखंडता, इसलिए रखने में सक्षम हूँ $wp_the_query->post, $wp_query->post, $postsऔर $postठहरने टेम्पलेट में स्थिर। इनमें से प्रत्येक चर वर्तमान पृष्ठ ऑब्जेक्ट (जैसा कि सच्चे पृष्ठों के साथ होता है) को संदर्भित करता है। इस तरह, ब्रेडक्रंब जैसे कार्यों को पता है कि वर्तमान पृष्ठ एक सच्चा पृष्ठ है, न कि किसी प्रकार का संग्रह।

हालांकि मुझे पृष्ठांकन के लिए समायोजित करने के लिए मुख्य क्वेरी को थोड़ा ( फिल्टर और कार्यों के माध्यम से ) बदलना था , लेकिन हम उस पर आ जाएंगे।

सबसे पहले पोस्ट करें

पोस्ट इंजेक्शन को पूरा करने के लिए, मैंने इंजेक्शन के लिए आवश्यक पदों को वापस करने के लिए एक कस्टम क्वेरी का उपयोग किया। मैंने $found_pagesमुख्य क्वेरी से काम करने के लिए मुख्य क्वेरी को समायोजित करने के लिए कस्टम क्वेरी की संपत्ति का उपयोग किया । loop_endकार्रवाई के माध्यम से पोस्ट को मुख्य क्वेरी में इंजेक्ट किया जाता है।

कस्टम क्वेरी को कक्षा के बाहर सुलभ और उपयोगी बनाने के लिए, मैंने कुछ क्रियाओं को शुरू किया।

  • अंकुरण हुक करने के लिए अंकुरण हुक:

    • pregetgostsforgages_before_loop_pagination

    • pregetgostsforgages_after_loop_pagination

  • कस्टम काउंटर जो पदों को लूप में गिनता है। इन क्रियाओं को पोस्ट संख्या के अनुसार लूप के अंदर कैसे प्रदर्शित किया जाता है, इसे बदलने के लिए उपयोग किया जा सकता है।

    • pregetgostsforgages_counter_before_template_part

    • pregetgostsforgages_counter_after_template_part

  • क्वेरी ऑब्जेक्ट और वर्तमान पोस्ट ऑब्जेक्ट तक पहुंचने के लिए सामान्य हुक

    • pregetgostsforgages_current_post_and_object

ये हुक आपको कुल हैंड-ऑफ अनुभव प्रदान करते हैं, क्योंकि आपको पृष्ठ टेम्पलेट में कुछ भी बदलने की आवश्यकता नहीं है, जो शुरू से ही मेरा मूल उद्देश्य था। एक पेज पूरी तरह से एक प्लगइन या एक फ़ंक्शन फ़ाइल से बदला जा सकता है, जो इस समाधान को बहुत गतिशील बनाता है।

मैंने get_template_part()एक टेम्पलेट भाग को लोड करने के लिए भी उपयोग किया है, जिसका उपयोग पदों को प्रदर्शित करने के लिए किया जाएगा। अधिकांश थीम आज टेम्पलेट भागों का उपयोग करते हैं, जो कक्षा में इसे बहुत उपयोगी बनाता है। यदि आपका विषय उपयोग करता है content.php, तो आप बस लोड contentकरने के $templatePartलिए पास कर सकते हैं content.php

आप टेम्पलेट भागों के लिए पोस्ट प्रारूप समर्थन की जरूरत है, यह आसान है - आपको बस पारित कर सकते हैं contentकरने के लिए $templatePartऔर सेट $postFormatSupportकरने के लिए true। नतीजतन, टेम्पलेट भाग content-video.phpको पोस्ट प्रारूप के लिए लोड किया जाएगा video

मुख्य प्रश्न

निम्नलिखित बदलावों को संबंधित फ़िल्टर और कार्यों के माध्यम से मुख्य क्वेरी में किया गया था:

  • मुख्य क्वेरी को पृष्ठांकित करने के लिए:

    • इंजेक्टर क्वेरी का $found_postsगुण मान found_postsफ़िल्टर के माध्यम से मुख्य क्वेरी ऑब्जेक्ट को दिया जाता है ।

    • उपयोगकर्ता द्वारा पारित पैरामीटर posts_per_pageका मान मुख्य क्वेरी के माध्यम से सेट किया गया है pre_get_posts

    • $max_num_pagesमें पदों की राशि का उपयोग कर गणना की जाती है $found_posts और posts_per_page। क्योंकि is_singularपृष्ठों पर सत्य है, यह LIMITसेट किए जा रहे क्लॉज को रोकता है । बस is_singularकुछ मुद्दों के कारण झूठे की स्थापना , इसलिए मैंने फ़िल्टर के LIMITमाध्यम से खंड निर्धारित करने का निर्णय लिया post_limits। मैंने 404 के पेजों पर पेजिंग चालू करने से बचने offsetके लिए LIMITक्लॉज सेट को रखा 0

यह पेजिनेशन और पोस्ट इंजेक्शन से उत्पन्न होने वाले किसी भी मुद्दे का ध्यान रखता है।

पृष्ठ का उद्देश्य

वर्तमान पृष्ठ ऑब्जेक्ट पृष्ठ पर डिफ़ॉल्ट लूप का उपयोग करके पोस्ट के रूप में प्रदर्शित करने के लिए उपलब्ध है, अलग-अलग और इंजेक्शन वाले पोस्ट के शीर्ष पर। यदि आपको इसकी आवश्यकता नहीं है, तो आप बस $removePageFromLoopसच पर सेट कर सकते हैं , और यह पृष्ठ सामग्री को प्रदर्शित होने से छिपा देगा।

इस स्तर पर, मैं पृष्ठ ऑब्जेक्ट को कार्यों loop_startऔर loop_endकार्यों के माध्यम से छिपाने के लिए CSS का उपयोग कर रहा हूं क्योंकि मुझे ऐसा करने का दूसरा तरीका नहीं मिल रहा है। इस विधि के साथ नकारात्मक पक्ष यह है कि the_postमुख्य क्वेरी के अंदर कार्रवाई हुक के लिए झुका हुआ कुछ भी छिपाया जाएगा।

कक्षा

PreGetPostsForPagesवर्ग सुधार किया जा सकता है और ठीक से और साथ ही namespaced किया जाना चाहिए। जब आप इसे अपनी थीम की फ़ंक्शंस फ़ाइल में छोड़ सकते हैं, तो इसे कस्टम प्लगइन में छोड़ना बेहतर होगा।

जैसा कि आप फिट देखते हैं, संशोधित करें और दुरुपयोग करें। कोड अच्छी तरह से टिप्पणी की गई है, इसलिए इसका पालन करना और समायोजित करना आसान होना चाहिए

class PreGetPostsForPages
{
    /**
     * @var string|int $pageID
     * @access protected     
     * @since 1.0.0
     */
    protected $pageID;

    /**
     * @var string $templatePart
     * @access protected     
     * @since 1.0.0
     */
    protected $templatePart;

    /**
     * @var bool $postFormatSupport
     * @access protected     
     * @since 1.0.0
     */
    protected $postFormatSupport;

    /**
     * @var bool $removePageFromLoop
     * @access protected     
     * @since 1.0.0
     */
    protected $removePageFromLoop;

    /**
     * @var array $args
     * @access protected     
     * @since 1.0.0
     */
    protected $args;

    /**
     * @var array $mergedArgs
     * @access protected     
     * @since 1.0.0
     */
    protected $mergedArgs = [];

    /**
     * @var NULL|\stdClass $injectorQuery
     * @access protected     
     * @since 1.0.0
     */
    protected $injectorQuery = NULL;

    /**
     * @var int $validatedPageID
     * @access protected     
     * @since 1.0.0
     */
    protected $validatedPageID = 0;

    /** 
     * Constructor method
     *
     * @param string|int $pageID The ID of the page we would like to target
     * @param string $templatePart The template part which should be used to display posts
     * @param string $postFormatSupport Should get_template_part support post format specific template parts
     * @param bool $removePageFromLoop Should the page content be displayed or not
     * @param array $args An array of valid arguments compatible with WP_Query
     *
     * @since 1.0.0
     */      
    public function __construct( 
        $pageID             = NULL,
        $templatePart       = NULL,
        $postFormatSupport  = false,
        $removePageFromLoop = false,
        $args               = [] 
    ) {
        $this->pageID             = $pageID;
        $this->templatePart       = $templatePart;
        $this->postFormatSupport  = $postFormatSupport;
        $this->removePageFromLoop = $removePageFromLoop;
        $this->args               = $args;
    }

    /**
     * Public method init()
     *
     * The init method will be use to initialize our pre_get_posts action
     *
     * @since 1.0.0
     */
    public function init()
    {
        // Initialise our pre_get_posts action
        add_action( 'pre_get_posts', [$this, 'preGetPosts'] );
    }

    /**
     * Private method validatePageID()
     *
     * Validates the page ID passed
     *
     * @since 1.0.0
     */
    private function validatePageID()
    {
        $validatedPageID = filter_var( $this->pageID, FILTER_VALIDATE_INT );
        $this->validatedPageID = $validatedPageID;
    }

    /**
     * Private method mergedArgs()
     *
     * Merge the default args with the user passed args
     *
     * @since 1.0.0
     */
    private function mergedArgs()
    {
        // Set default arguments
        if ( get_query_var( 'paged' ) ) {
            $currentPage = get_query_var( 'paged' );
        } elseif ( get_query_var( 'page' ) ) {
            $currentPage = get_query_var( 'page' );
        } else {
            $currentPage = 1;
        }
        $default = [
            'suppress_filters'    => true,
            'ignore_sticky_posts' => 1,
            'paged'               => $currentPage,
            'posts_per_page'      => get_option( 'posts_per_page' ), // Set posts per page here to set the LIMIT clause etc
            'nopaging'            => false
        ];    
        $mergedArgs = wp_parse_args( (array) $this->args, $default );
        $this->mergedArgs = $mergedArgs;
    }

    /**
     * Public method preGetPosts()
     *
     * This is the callback method which will be hooked to the 
     * pre_get_posts action hook. This method will be used to alter
     * the main query on the page specified by ID.
     *
     * @param \stdClass WP_Query The query object passed by reference
     * @since 1.0.0
     */
    public function preGetPosts( \WP_Query $q )
    {
        if (    !is_admin() // Only target the front end
             && $q->is_main_query() // Only target the main query
             && $q->is_page( filter_var( $this->validatedPageID, FILTER_VALIDATE_INT ) ) // Only target our specified page
        ) {
            // Remove the pre_get_posts action to avoid unexpected issues
            remove_action( current_action(), [$this, __METHOD__] );

            // METHODS:
            // Initialize our method which will return the validated page ID
            $this->validatePageID();
            // Initiale our mergedArgs() method
            $this->mergedArgs();
            // Initiale our custom query method
            $this->injectorQuery();

            /**
             * We need to alter a couple of things here in order for this to work
             * - Set posts_per_page to the user set value in order for the query to
             *   to properly calculate the $max_num_pages property for pagination
             * - Set the $found_posts property of the main query to the $found_posts
             *   property of our custom query we will be using to inject posts
             * - Set the LIMIT clause to the SQL query. By default, on pages, `is_singular` 
             *   returns true on pages which removes the LIMIT clause from the SQL query.
             *   We need the LIMIT clause because an empty limit clause inhibits the calculation
             *   of the $max_num_pages property which we need for pagination
             */
            if (    $this->mergedArgs['posts_per_page'] 
                 && true !== $this->mergedArgs['nopaging']
            ) {
                $q->set( 'posts_per_page', $this->mergedArgs['posts_per_page'] );
            } elseif ( true === $this->mergedArgs['nopaging'] ) {
                $q->set( 'posts_per_page', -1 );
            }

            // FILTERS:
            add_filter( 'found_posts', [$this, 'foundPosts'], PHP_INT_MAX, 2 );
            add_filter( 'post_limits', [$this, 'postLimits']);

            // ACTIONS:
            /**
             * We can now add all our actions that we will be using to inject our custom
             * posts into the main query. We will not be altering the main query or the 
             * main query's $posts property as we would like to keep full integrity of the 
             * $post, $posts globals as well as $wp_query->post. For this reason we will use
             * post injection
             */     
            add_action( 'loop_start', [$this, 'loopStart'], 1 );
            add_action( 'loop_end',   [$this, 'loopEnd'],   1 );
        }    
    }    

    /**
     * Public method injectorQuery
     *
     * This will be the method which will handle our custom
     * query which will be used to 
     * - return the posts that should be injected into the main
     *   query according to the arguments passed
     * - alter the $found_posts property of the main query to make
     *   pagination work 
     *
     * @link https://codex.wordpress.org/Class_Reference/WP_Query
     * @since 1.0.0
     * @return \stdClass $this->injectorQuery
     */
    public function injectorQuery()
    {
        //Define our custom query
        $injectorQuery = new \WP_Query( $this->mergedArgs );

        // Update the thumbnail cache
        update_post_thumbnail_cache( $injectorQuery );

        $this->injectorQuery = $injectorQuery;

        return $this->injectorQuery;
    }

    /**
     * Public callback method foundPosts()
     * 
     * We need to set found_posts in the main query to the $found_posts
     * property of the custom query in order for the main query to correctly 
     * calculate $max_num_pages for pagination
     *
     * @param string $found_posts Passed by reference by the filter
     * @param stdClass \WP_Query Sq The current query object passed by refence
     * @since 1.0.0
     * @return $found_posts
     */
    public function foundPosts( $found_posts, \WP_Query $q )
    {
        if ( !$q->is_main_query() )
            return $found_posts;

        remove_filter( current_filter(), [$this, __METHOD__] );

        // Make sure that $this->injectorQuery actually have a value and is not NULL
        if (    $this->injectorQuery instanceof \WP_Query 
             && 0 != $this->injectorQuery->found_posts
        )
            return $found_posts = $this->injectorQuery->found_posts;

        return $found_posts;
    }

    /**
     * Public callback method postLimits()
     *
     * We need to set the LIMIT clause as it it is removed on pages due to 
     * is_singular returning true. Witout the limit clause, $max_num_pages stays
     * set 0 which avoids pagination. 
     *
     * We will also leave the offset part of the LIMIT cluase to 0 to avoid paged
     * pages returning 404's
     *
     * @param string $limits Passed by reference in the filter
     * @since 1.0.0
     * @return $limits
     */
    public function postLimits( $limits )
    {
        $posts_per_page = (int) $this->mergedArgs['posts_per_page'];
        if (    $posts_per_page
             && -1   !=  $posts_per_page // Make sure that posts_per_page is not set to return all posts
             && true !== $this->mergedArgs['nopaging'] // Make sure that nopaging is not set to true
        ) {
            $limits = "LIMIT 0, $posts_per_page"; // Leave offset at 0 to avoid 404 on paged pages
        }

        return $limits;
    }

    /**
     * Public callback method loopStart()
     *
     * Callback function which will be hooked to the loop_start action hook
     *
     * @param \stdClass \WP_Query $q Query object passed by reference
     * @since 1.0.0
     */
    public function loopStart( \WP_Query $q )
    {
        /**
         * Although we run this action inside our preGetPosts methods and
         * and inside a main query check, we need to redo the check here aswell
         * because failing to do so sets our div in the custom query output as well
         */

        if ( !$q->is_main_query() )
            return;

        /** 
         * Add inline style to hide the page content from the loop
         * whenever $removePageFromLoop is set to true. You can
         * alternatively alter the page template in a child theme by removing
         * everything inside the loop, but keeping the loop
         * Example of how your loop should look like:
         *     while ( have_posts() ) {
         *     the_post();
         *         // Add nothing here
         *     }
         */
        if ( true === $this->removePageFromLoop )
            echo '<div style="display:none">';
    }   

    /**
     * Public callback method loopEnd()
     *
     * Callback function which will be hooked to the loop_end action hook
     *
     * @param \stdClass \WP_Query $q Query object passed by reference
     * @since 1.0.0
     */
    public function loopEnd( \WP_Query $q )
    {  
        /**
         * Although we run this action inside our preGetPosts methods and
         * and inside a main query check, we need to redo the check here as well
         * because failing to do so sets our custom query into an infinite loop
         */
        if ( !$q->is_main_query() )
            return;

        // See the note in the loopStart method  
        if ( true === $this->removePageFromLoop )
            echo '</div>';

        //Make sure that $this->injectorQuery actually have a value and is not NULL
        if ( !$this->injectorQuery instanceof \WP_Query )
            return; 

        // Setup a counter as wee need to run the custom query only once    
        static $count = 0;    

        /**
         * Only run the custom query on the first run of the loop. Any consecutive
         * runs (like if the user runs the loop again), the custom posts won't show.
         */
        if ( 0 === (int) $count ) {      
            // We will now add our custom posts on loop_end
            $this->injectorQuery->rewind_posts();

            // Create our loop
            if ( $this->injectorQuery->have_posts() ) {

                /**
                 * Fires before the loop to add pagination.
                 *
                 * @since 1.0.0
                 *
                 * @param \stdClass $this->injectorQuery Current object (passed by reference).
                 */
                do_action( 'pregetgostsforgages_before_loop_pagination', $this->injectorQuery );


                // Add a static counter for those who need it
                static $counter = 0;

                while ( $this->injectorQuery->have_posts() ) {
                    $this->injectorQuery->the_post(); 

                    /**
                     * Fires before get_template_part.
                     *
                     * @since 1.0.0
                     *
                     * @param int $counter (passed by reference).
                     */
                    do_action( 'pregetgostsforgages_counter_before_template_part', $counter );

                    /**
                     * Fires before get_template_part.
                     *
                     * @since 1.0.0
                     *
                     * @param \stdClass $this->injectorQuery-post Current post object (passed by reference).
                     * @param \stdClass $this->injectorQuery Current object (passed by reference).
                     */
                    do_action( 'pregetgostsforgages_current_post_and_object', $this->injectorQuery->post, $this->injectorQuery );

                    /** 
                     * Load our custom template part as set by the user
                     * 
                     * We will also add template support for post formats. If $this->postFormatSupport
                     * is set to true, get_post_format() will be automatically added in get_template part
                     *
                     * If you have a template called content-video.php, you only need to pass 'content'
                     * to $template part and then set $this->postFormatSupport to true in order to load
                     * content-video.php for video post format posts
                     */
                    $part = '';
                    if ( true === $this->postFormatSupport )
                        $part = get_post_format( $this->injectorQuery->post->ID ); 

                    get_template_part( 
                        filter_var( $this->templatePart, FILTER_SANITIZE_STRING ), 
                        $part
                    );

                    /**
                     * Fires after get_template_part.
                     *
                     * @since 1.0.0
                     *
                     * @param int $counter (passed by reference).
                     */
                    do_action( 'pregetgostsforgages_counter_after_template_part', $counter );

                    $counter++; //Update the counter
                }

                wp_reset_postdata();

                /**
                 * Fires after the loop to add pagination.
                 *
                 * @since 1.0.0
                 *
                 * @param \stdClass $this->injectorQuery Current object (passed by reference).
                 */
                do_action( 'pregetgostsforgages_after_loop_pagination', $this->injectorQuery );
            }
        }

        // Update our static counter
        $count++;       
    }
}  

उपयोग

अब आप आईडी 251 वाले पेज को टारगेट करने के लिए क्लास ( अपने प्लगइन या फंक्शन्स फाइल में भी ) को शुरू कर सकते हैं , जिसके बाद हम postपोस्ट टाइप से प्रति पेज 2 पोस्ट दिखाएंगे ।

$query = new PreGetPostsForPages(
    251,       // Page ID we will target
    'content', //Template part which will be used to display posts, name should be without .php extension 
    true,      // Should get_template_part support post formats
    false,     // Should the page object be excluded from the loop
    [          // Array of valid arguments that will be passed to WP_Query/pre_get_posts
        'post_type'      => 'post', 
        'posts_per_page' => 2
    ] 
);
$query->init(); 

जुड़ने की योजना और कस्टमर स्टाइलिंग

जैसा कि मैंने पहले उल्लेख किया है, इंजेक्टर क्वेरी में कुछ क्रियाएँ हैं, ताकि पेजिंग और / या कस्टम स्टाइल को जोड़ा जा सके।

निम्नलिखित उदाहरण में, मैंने लिंक्ड जवाब से अपने स्वयं के पेजिनेशन फ़ंक्शन का उपयोग करके लूप के बाद पेजेशन जोड़ा । इसके अलावा, अपने कस्टम काउंटर का उपयोग करते हुए, मैंने <div>अपने पोस्ट को दो कॉलम में प्रदर्शित करने के लिए एक जोड़ा ।

यहां वे क्रियाएं हैं जिनका मैंने उपयोग किया है

add_action( 'pregetgostsforgages_counter_before_template_part', function ( $counter )
{
    $class = $counter%2  ? ' right' : ' left';
    echo '<div class="entry-column' . $class . '">';
});

add_action( 'pregetgostsforgages_counter_after_template_part', function ( $counter )
{
    echo '</div>';
});

add_action( 'pregetgostsforgages_after_loop_pagination', function ( \WP_Query $q )
{
    paginated_numbers();    
});

ध्यान दें कि पेजिनेशन मुख्य क्वेरी द्वारा निर्धारित होता है, इंजेक्टर क्वेरी से नहीं, इसलिए अंतर्निहित कार्य the_posts_pagination()भी काम करना चाहिए।

यह अंतिम परिणाम है

यहाँ छवि विवरण दर्ज करें

स्टेटिक फ्रंट पेजेस

सब कुछ स्थिर सामने के पन्नों पर अपेक्षा के अनुरूप काम करता है और आगे किसी संशोधन की आवश्यकता के बिना मेरे पृष्ठ पर अंक लगाना।

निष्कर्ष

यह बहुत अधिक ओवरहेड की तरह लग सकता है, और यह हो सकता है, लेकिन समर्थक का कॉनवे का बड़ा समय है।

बड़े प्रो

  • आपको किसी भी तरह से विशिष्ट पृष्ठ के लिए पृष्ठ टेम्पलेट को बदलने की आवश्यकता नहीं है। यह सब कुछ गतिशील बनाता है और कोड में संशोधन किए बिना विषयों के बीच आसानी से स्थानांतरित किया जा सकता है, इसलिए जब तक सब कुछ एक प्लगइन में किया जाता है।

  • content.phpयदि आपका विषय अभी तक एक नहीं है , तो अधिकतम, आपको केवल अपने विषय में एक टेम्पलेट भाग बनाने की आवश्यकता है ।

  • किसी भी प्रकार का पृष्ठांकन जो मुख्य क्वेरी पर काम करता है, पृष्ठ पर किसी भी प्रकार के फेरबदल या क्वेरी से कार्य किए जाने के अतिरिक्त कुछ भी काम नहीं करेगा।

अधिक समर्थक हैं, जो मैं अभी नहीं सोच सकता, लेकिन ये महत्वपूर्ण हैं।


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