সত্য পৃষ্ঠা এবং স্থির সম্মুখ পৃষ্ঠায় pre_get_posts ব্যবহার করা


19

pre_get_postsসত্য পৃষ্ঠাগুলি এবং স্থিতিশীল সম্মুখ পৃষ্ঠাগুলিতে কীভাবে ব্যবহার করা যায় সে সম্পর্কে আমি যথেষ্ট বিস্তৃত গবেষণা করেছি এবং মনে হয় কোনও বোকা প্রমাণ পদ্ধতি নেই।

আমি আজ অবধি সবচেয়ে ভাল বিকল্পটি পেয়েছি স্ট্যাকওভারফ্লোতে @ বিবারগায়ার দ্বারা পোস্ট করা । আমি এটিকে একটি ডেমো ক্লাসে আবার লিখেছি এবং কোডটি কিছুটা গতিশীল করেছি

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();

এটি আমার নিজের পৃষ্ঠার ফাংশনটি ব্যবহার করে প্রত্যাশার মতো ভাল এবং পৃষ্ঠায় কাজ করে

সমস্যা:

ফাংশনটির কারণে, আমি পৃষ্ঠা অখণ্ডতা looseিলে করে রাখি যা সঞ্চিত পৃষ্ঠায় থাকা সামগ্রীতে অন্যান্য ফাংশন নির্ভর করে $post$postলুপটি লুপের প্রথম পোস্টে সেট করার আগে এবং লুপের $postপরে লুপের শেষ পোস্টে সেট করার আগে, যা প্রত্যাশিত। আমার যা দরকার তা হ'ল $postএটি বর্তমান পৃষ্ঠার বস্তুতে, যেমন কোয়েরি অবজেক্টে সেট করা আছে।

এছাড়াও, $wp_the_query->postএবং $wp_query->postলুপে প্রথম পোস্ট ধারণ করে এবং সাধারণ পৃষ্ঠায় কোয়েরি করা বস্তুটি নয়

লুপের আগে এবং পরে আমার গ্লোবালগুলি পরীক্ষা করতে আমি নীচেরগুলি ( আমার শ্রেণীর বাইরে ) ব্যবহার করি

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
}

লুপের আগে:

লুপের আগে, সমস্যাটি আংশিকভাবে ঠিক করে সেট $injectPageIntoLoopকরে সমাধান করা হয় যা পৃষ্ঠা অবজেক্টটিকে লুপের প্রথম পৃষ্ঠা হিসাবে ইনজেক্ট করে। অনুরোধকৃত পোস্টগুলির আগে আপনার যদি পৃষ্ঠার তথ্যটি দেখানোর দরকার হয় তবে এটি বেশ কার্যকর but

আমি গ্লোবালগুলি সরাসরি হ্যাক করে লুপের আগে বিষয়টি সমাধান করতে পারি, যা আমি সত্যিই পছন্দ করি না। আমি 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 লুপে সর্বশেষ পোস্টে সেট করা আছে।

আমার যা দরকার তা হল তিনটিই আবার কোয়েরি অবজেক্ট / বর্তমান পৃষ্ঠা অবজেক্টে সেট করা আছে to

আমি wpপদ্ধতিটিতে loop_endপদক্ষেপের চেষ্টা করেছি , যা কার্যকর হয় না। Hooking 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পুরো পৃষ্ঠার কার্যকারিতা পরিবর্তন না করে পৃষ্ঠার টেম্পলেট এবং স্থির সম্মুখ পৃষ্ঠাগুলির মাধ্যমে পোস্ট যুক্ত করার জন্য আমার একটি নির্ভরযোগ্য উপায় প্রয়োজন need এই পর্যায়ে, প্রশ্নের কোডটি দাঁড় করায়, এটি আমার রুটির ক্র্যাম্ব বৈশিষ্ট্যটি এবং লুপের পরে সম্পর্কিত পৃষ্ঠা বৈশিষ্ট্যটি ভেঙে দেয় $post যার "ভুল" পোস্ট অবজেক্ট রয়েছে।

সর্বোপরি, আমি পৃষ্ঠার টেম্পলেটগুলি সরাসরি পরিবর্তন করতে চাই না। আমি টেমপ্লেটে কোনও পরিবর্তন ছাড়াই কোনও পৃষ্ঠা টেম্পলেটে পোস্ট যুক্ত করতে সক্ষম হতে চাই


আপনি কী করতে চেষ্টা করছেন, আপনার লক্ষ্য বা কার্যকরী প্রয়োজনীয়তা? আমি যতদূর বলতে পারি আপনি এটিকে কোথাও বর্ণনা করবেন না।
অ্যাডালভ্যাল

উত্তর:


13

আমি অবশেষে এটি কাজ করেছিলাম, তবে আমার প্রশ্নের কোড সহ নয়। আমি সম্পূর্ণরূপে পুরো ধারণাটি সরিয়ে দিয়ে আবার নতুন দিকে যেতে শুরু করলাম।

বিঃদ্রঃ:

যদি কেউ আমার প্রশ্নে সমস্যাগুলি সমাধান করতে সক্ষম হয় তবে একটি উত্তর পোস্ট করতে দ্বিধা বোধ করবেন। এছাড়াও, আপনার যদি অন্য কোনও সমাধান থাকে তবে নির্দ্বিধায় উত্তর পোস্ট করুন।

প্রত্যাশিত শ্রেণি ও সমাধান:

আমি এখানে যা করার চেষ্টা করেছি তা হ'ল পোস্ট ইনজেকশন ব্যবহারের পরিবর্তে মূল ক্যোয়ারিকে পুরোপুরি পরিবর্তন করা এবং (ক) সরাসরি গ্লোবালগুলি পরিবর্তন করা, (খ) গ্লোবাল ভ্যালু ইস্যুতে চালিত হওয়া এবং (সি) সহ উপরের সমস্ত ইস্যুতে আটকে যাওয়া than পৃষ্ঠার টেমপ্লেটগুলি পুনরায় বরাদ্দ করা হচ্ছে।

পোস্ট ইনজেকশন ব্যবহার করে, আমি সম্পূর্ণ পোস্ট অখণ্ডতা, তাই রাখতে সক্ষম নই $wp_the_query->post, $wp_query->post, $postsএবং $postথাকার টেমপ্লেট সর্বত্র ধ্রুবক। এই প্রতিটি ভেরিয়েবল বর্তমান পৃষ্ঠার বিষয়বস্তুকে উল্লেখ করে (সত্য পৃষ্ঠাগুলির ক্ষেত্রে যেমন হয়)। এইভাবে, ব্রেডক্র্যাম্বসের মতো ফাংশনগুলি জানেন যে বর্তমান পৃষ্ঠাটি একটি সত্য পৃষ্ঠা এবং কোনও ধরণের সংরক্ষণাগার নয়।

আমাকে মূল ক্যোয়ারিটি কিছুটা পরিবর্তন করতে হয়েছিল ( ফিল্টার এবং ক্রিয়াগুলির মাধ্যমে)যদিও পৃষ্ঠাগুলির জন্য সামঞ্জস্য ) পরিবর্তন করতে হয়েছিল, তবে আমরা এটিতে আসব।

ইনজেকশন QUERY পোস্ট করুন

পোস্ট ইনজেকশনটি সম্পন্ন করার জন্য, আমি ইঞ্জেকশনের জন্য প্রয়োজনীয় পোস্টগুলি ফেরত দিতে একটি কাস্টম ক্যোয়ারী ব্যবহার করেছি। আমি কাস্টম ক্যোয়ারীও ব্যবহার করেছি$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

মেইন QUERY

নিম্নলিখিত পরিবর্তনগুলি সংশ্লিষ্ট ফিল্টার এবং ক্রিয়াগুলির মাধ্যমে মূল ক্যোয়ারিতে করা হয়েছিল:

  • মূল ক্যোয়ারীটি পৃষ্ঠাতে সাজানোর জন্য:

    • ইনজেক্টর ক্যোয়ারির $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। আমি রক্ষা offsetএর LIMITথেকে দফা সেট 0চালু পত্রাঙ্কন সঙ্গে পাতায় 404 এর এড়ানো।

এটি পৃষ্ঠাবদ্ধকরণ এবং পোস্ট ইঞ্জেকশন থেকে উত্থাপিত হতে পারে এমন কোনও সমস্যার যত্ন নেয়।

পৃষ্ঠা অবজেক্ট

বর্তমান পৃষ্ঠার অবজেক্টটি পৃষ্ঠায় ডিফল্ট লুপটি পৃথক করে এবং ইনজেকশনের পোস্টের শীর্ষে পোস্ট হিসাবে প্রদর্শন করতে উপলভ্য। আপনার যদি এটির প্রয়োজন না হয় তবে আপনি কেবল $removePageFromLoopসত্যে সেট করতে পারেন এবং এটি পৃষ্ঠা সামগ্রীতে প্রদর্শিত হতে আড়াল করবে।

এই পর্যায়ে, আমি পৃষ্ঠার বস্তুটি loop_startএবং loop_endক্রিয়াকলাপগুলির মাধ্যমে লুকানোর জন্য সিএসএস ব্যবহার করছি কারণ আমি এটি করার আর কোনও উপায় খুঁজে পাচ্ছি না। এই পদ্ধতির সাথে নেতিবাচকতা হ'ল 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++;       
    }
}  

, USAGE

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আপনার থিমটিতে এখনও একটি না থাকলে আপনার সর্বাধিক, কেবলমাত্র আপনার থিমটিতে একটি টেম্পলেট অংশ তৈরি করা দরকার ।

  • মূল ক্যোয়ারিতে কাজ করা যে কোনও পৃষ্ঠা পৃষ্ঠাতে কোনও ধরণের পরিবর্তন বা কোয়েরি থেকে ফাংশনে পাসের অতিরিক্ত কিছু ছাড়াই পৃষ্ঠাতে কাজ করবে।

আরও কিছু প্রো রয়েছে যা আমি এখন ভাবতে পারি না, তবে এগুলি গুরুত্বপূর্ণ।


আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.