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
アプローチとは逆に、固定投稿を防止しないことに気づきました。
詳細と@boonebgorgesによる例については、チケット#36687をチェックしてください。