在WP_Query中获取WooCommerce特色产品
2022-08-30 23:57:45
我将WooCommerce更新到3.0版本,但我无法在我的主题上显示特色产品,我用谷歌搜索了一段时间,让WC删除了_feature并在分类中添加它。但是我不明白我的主题是如何获得特色产品的。
这是错误特色产品的代码。
$meta_query = WC()->query->get_meta_query();
$meta_query[] = array(
'key' => '_featured',
'value' => 'yes'
);
$args = array(
'post_type' => 'product',
'post_status' => 'publish',
'ignore_sticky_posts' => 1,
'posts_per_page' => $products,
'orderby' => $orderby,
'order' => $order == 'asc' ? 'asc' : 'desc',
'meta_query' => $meta_query
);
如果您知道数据库中的特色项目在哪里。非常感谢。