问题描述

不知道如何实现这一点。我正在尝试在网站主页上混合标准的帖子和自定义帖子,但我只想显示定制帖子,如果设置了元值。显示帖子工作正常'post_type' => array('game', 'post'),但是当我添加到 meta_query 中,常规帖子不再显示 (这是有道理的,因为它们不符合 meta_query 条件) 。

那么如何将 meta_query 限制为仅定制的帖子类型,以便常规帖子仍然包含在内?

最佳解决方案

有不同的做法,2 进入我的脑海:

  1. 使用完整的自定义 $wpdb 查询

  2. 使用 WP_Query 与过滤器,使用 WP_Meta_Query 构建附加的 sql

我将在这里发布案例#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 on Codex 以获取有关如何设置元查询 args 的完整文档。


Edit

我在一个可重用的插件中重构代码,使用一个类。作为 Gist 。

参考文献

注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。