我将WooCommerce更新到版本3.0但我无法在我的主题上显示特色产品,我google了一段时间并让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
);
Run Code Online (Sandbox Code Playgroud)
如果您知道DataBase中的特色项目在哪里.非常感谢.