트릭을 수행하는 다른 방법이 있습니다 .2가 생각납니다.
- 완전한 맞춤
$wpdb
검색어를 사용하십시오.
- 추가 SQL을 빌드하는 데 사용
WP_Query
하는 필터와 함께 사용WP_Meta_Query
사례 2의 샘플 코드를 여기에 게시하겠습니다.
/**
* Run on pre_get_posts and if on home page (look at url)
* add posts_where, posts_join and pre_get_posts hooks
*/
function home_page_game_sql( $query ) {
// exit if is not main query and home index
if ( ! ( $query->is_main_query() && ! is_admin() && is_home() ) ) return;
add_filter( 'posts_where', 'home_page_game_filter' );
add_filter( 'posts_join', 'home_page_game_filter' );
}
add_action('pre_get_posts', 'home_page_game_sql');
/**
* Set the SQL filtering posts_join and posts_where
* use WP_Meta_Query to generate the additional where clause
*/
function home_page_game_filter( $sql = '' ) {
// remove filters
remove_filter( current_filter(), __FUNCTION__);
static $sql_game_filters;
if ( is_null($sql_game_filters) ) {
// SET YOUR META QUERY ARGS HERE
$args = array(
array(
'key' => 'my_custom_key',
'value' => 'value_your_are_looking_for',
'compare' => '='
)
);
$meta_query = new WP_Meta_Query( $args );
$sql_game_filters = $meta_query->get_sql('post', $GLOBALS['wpdb']->posts, 'ID');
}
// SET YOUR CPT NAME HERE
$cpt = 'game';
global $wpdb;
if ( current_filter() === 'posts_where' && isset($sql_game_filters['where']) ) {
$where = "AND ($wpdb->posts.post_status = 'publish') ";
$where .= "AND ( $wpdb->posts.post_type = 'post' OR ( ";
$where .= $wpdb->prepare( "$wpdb->posts.post_type = %s", $cpt);
$where .= $sql_game_filters['where'] . ' ) )';
$where .= " GROUP BY $wpdb->posts.ID ";
return $where;
}
if ( current_filter() === 'posts_join' && isset($sql_game_filters['join']) ) {
return $sql .= $sql_game_filters['join'];
}
}
자세한 설명은 인라인 주석을 참조하십시오.
또한 볼 분과에 WP_Meta_Query 당신의 메타 쿼리 인수를 설정하는 방법에 대한 문서를 위해.
편집하다
클래스를 사용하여 재사용 가능한 플러그인으로 코드를 리팩터링했습니다. Gist로 사용 가능합니다 .
WP_Query
.pre_get_posts
쿼리를 변경하거나 사용자 지정 SQL 문을 사용해야 합니다. 어쨌든 현재 코드를 보여주세요.