该posts_request
过滤器
浏览一下WP_Query
我们发现的这一部分内容:
if ( !$q['suppress_filters'] ) {
/**
* Filter the completed SQL query before sending.
*
* @since 2.0.0
*
* @param array $request The complete SQL query.
* @param WP_Query &$this The WP_Query instance (passed by reference).
*/
$this->request = apply_filters_ref_array( 'posts_request',
array( $this->request, &$this ) );
}
if ( 'ids' == $q['fields'] ) {
$this->posts = $wpdb->get_col( $this->request );
$this->posts = array_map( 'intval', $this->posts );
$this->post_count = count( $this->posts );
$this->set_found_posts( $q, $limits );
return $this->posts;
}
我们可能会尝试通过posts_request
过滤器消除主要的房屋要求。这是一个例子:
add_filter( 'posts_request', function( $request, \WP_Query $q )
{
// Target main home query
if ( $q->is_home() && $q->is_main_query() )
{
// Our early exit
$q->set( 'fields', 'ids' );
// No request
$request = '';
}
return $request;
}, PHP_INT_MAX, 2 );
我们迫使'fields' => 'ids'
提早退出。
所述posts_pre_query
过滤器(WP 4.6+)
我们还可以使用WordPress 4.6+中可用的新posts_pre_query
src过滤器
add_filter( 'posts_pre_query', function( $posts, \WP_Query $q )
{
if( $q->is_home() && $q->is_main_query() )
{
$posts = [];
$q->found_posts = 0;
}
return $posts;
}, 10, 2 );
通过此过滤器,可以跳过常规数据库查询来实现自定义帖子注入。
我只是对此进行了测试,并注意到与posts_request
方法相反,这不会阻止发贴。
查看票证#36687了解更多信息,并@boonebgorges提供示例。