首页 文章

通过WooCommerce上的WP-Query显示不正确的帖子

提问于
浏览
0

所以基本上我使用以下代码似乎完全把所有内容都放入查询中,但是,我仍然得到错误的产品 . 例如,我要求的产品类别为“冬季”,但仍然会收到“全季”类别的产品

这是我的代码:

add_action('pre_get_posts', 'advanced_search_query', 1000);
function advanced_search_query($query) {
if ( ! is_admin() && $query->is_main_query() && $query->is_search() ) {
    global $wp_query;
    // category terms search
    $categories = array('winter','all-season','summer','run-flat');
    $category = $_GET['category'];
    $categories = array_diff($categories,array($category));
    $taxonomy = 'product_cat';
    if (isset($category) && !empty($category)) {
        $args = array(
            'relation' => 'AND',
            array(
                'taxonomy' => $taxonomy,
                'field' => 'slug',
                'terms' => $category,
                'operator' => 'IN'
            ),
            array(
                'taxonomy' => $taxonomy,
                'field' => 'slug',
                'terms' => array($categories),
                'operator' => 'NOT IN'
            )
        );
        $query->set('tax_query', $args);
        print_r($query);
    }
    return $query;
    }
}

print_r返回以下内容:

WP_Query Object([query] => Array([s] => 2457516 [post_type] => product)[query_vars] => Array([s] => 2457516 [post_type] => product [error] => [m ] => [p] => 0 [post_parent] => [subpost] => [subpost_id] => [attachment] => [attachment_id] => 0 [name] => [静态] => [pagename] => [page_id] => 0 [秒] => [分钟] => [小时] => [天] => 0 [monthnum] => 0 [年] => 0 [w] => 0 [category_name] => [tag] => [cat] => [tag_id] => [作者] => [author_name] => [feed] => [tb] => [paged] => 0 [comments_popup] => [meta_key] = > total_sales [meta_value] => [preview] => [sentence] => [fields] => [menu_order] => [category__in] => Array()[category__not_in] => Array()[category__and] => Array( )[post__in] => Array()[post__not_in] => Array()[tag__in] => Array()[tag__not_in] => Array()[tag__and] => Array()[tag_slug__in] => Array()[ tag_slug__and] => Array()[post_parent__in] => Array()[post_parent__not_in] => Array()[author__in] => Array()[author__not_in] =>数组()[orderby] => menu_order title [order] => ASC [meta_query] =>数组([0] =>数组([key] => _visibility [value] =>数组([0] =>可见[1] ] =>搜索)[比较] => IN)[1] =>数组([key] => _stock_status [value] => instock [比较] => =))[posts_per_page] => 12 [wc_query] => product_query [tax_query] => Array([relation] => AND [0] => Array([taxonomy] => product_cat [field] => slug [terms] => winter [operator] => IN)[1] = > Array([taxonomy] => product_cat [field] => slug [terms] => Array([1] => all-season [2] => summer [3] => run-flat)[operator] => NOT IN)))[tax_query] => WP_Tax_Query对象([queries] => Array()[关系] => AND [table_aliases:protected] => Array()[queried_terms] => Array()[primary_table] => [primary_id_column] =>)[meta_query] => [date_query] => [post_count] => 0 [current_post] => -1 [in_the_loop] => [comment_count] => 0 [current_comment] => -1 [found_posts] => 0 [max_num_pages] => 0 [max_num_comment_pages] => 0 [is_single] => [ is_preview] => [is_page] => [is_archive] => 1 [is_date] => [is_year] => [is_month] => [is_day] => [is_time] => [is_author] => [is_category] => [is_tag] => [is_tax] => [is_search] => 1 [is_feed] => [is_comment_feed] => [is_trackback] => [is_home] => [is_404] => [is_comments_popup] => [is_paged] = > [is_admin] => [is_attachment] => [is_singular] => [is_robots] => [is_posts_page] => [is_post_type_archive] => 1 [query_vars_hash:WP_Query:private] => ac61ad4fe3856f3f91e2ca85a7e667a1 [query_vars_changed:WP_Query:private] = > [thumbnails_cached] => [停用词:WP_Query:private] => [compat_fields:WP_Query:private] =>数组([0] => query_vars_hash [1] => query_vars_changed)[compat_methods:WP_Query:private] =>数组( [0] => init_query_flags [1] => parse_tax_query))

1 回答

  • 0

    我的猜测是你的tax_query中的条件有一个双数组 . 你有:

    $categories = array('...');
    
    $args = array(
        //....
        array(
            'terms' => array( $categories )
        )
        //....
    );
    

    这应该只是:

    'terms' => $categories
    

相关问题