ฉันได้ทำการวิจัยอย่างกว้างขวางเกี่ยวกับวิธีการใช้pre_get_posts
บนหน้าจริงและหน้าคงที่และดูเหมือนว่าไม่มีวิธีการพิสูจน์คนโง่
ตัวเลือกที่ดีที่สุดที่ฉันพบว่าวันที่มาจากการโพสต์ทำโดย @birgire ใน Stackoverflow ฉันเขียนมันใหม่ลงในคลาสของการสาธิตและทำให้โค้ดนั้นมีความเคลื่อนไหวมากขึ้น
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
เก็บโพสต์แรกในลูปไม่ใช่วัตถุที่สอบถามในหน้าปกติ
ฉันใช้สิ่งต่อไปนี้ ( นอกชั้นเรียนของฉัน ) เพื่อตรวจสอบรอบก่อนและหลังลูป
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
เป็นจริงซึ่งฉีดวัตถุหน้าเป็นหน้าแรกในการวนรอบ สิ่งนี้มีประโยชน์มากหากคุณต้องการแสดงข้อมูลหน้าก่อนโพสต์ที่ขอ แต่ถ้าคุณไม่ต้องการคุณจะถูกทำให้เมา
ฉันสามารถแก้ปัญหาก่อนที่จะวนรอบได้โดยแฮ็กกลมโดยตรงซึ่งฉันไม่ชอบ ฉันขอวิธีต่อไปนี้เพื่อ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
เทมเพลตหน้าและสแตติกหน้าคงที่โดยไม่เปลี่ยนฟังก์ชั่นเต็มหน้า ในขั้นตอนนี้เนื่องจากรหัสที่เป็นปัญหาจะทำให้คุณสมบัติ breadcrumb ของฉันและคุณลักษณะหน้าเว็บที่เกี่ยวข้องหลังจากวนซ้ำเนื่องจาก $post
ที่เก็บวัตถุโพสต์ "ผิด"
ที่สำคัญที่สุดฉันไม่ต้องการแก้ไขเทมเพลตหน้าโดยตรง ฉันต้องการที่จะเพิ่มการโพสต์ลงในเทมเพลทหน้าโดยไม่ต้องแก้ไขใด ๆกับเทมเพลท