मैंने 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
जिसके कारण "गलत" पोस्ट ऑब्जेक्ट होता है।
सबसे बढ़कर, मैं सीधे पेज टेम्प्लेट को बदलना नहीं चाहता। मैं टेम्पलेट के किसी भी संशोधन के बिना एक पृष्ठ टेम्पलेट में पोस्ट जोड़ने में सक्षम होना चाहता हूं