我将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
);
如果您知道DataBase中的特色项目在哪里。非常感谢。
答案 0 :(得分:13)
自Woocommerce 3以来,您需要使用纳税查询,而特色产品现在由product_visibility
自定义分类处理对于术语 featured
:
// The tax query
$tax_query[] = array(
'taxonomy' => 'product_visibility',
'field' => 'name',
'terms' => 'featured',
'operator' => 'IN', // or 'NOT IN' to exclude feature products
);
// The query
$query = new WP_Query( array(
'post_type' => 'product',
'post_status' => 'publish',
'ignore_sticky_posts' => 1,
'posts_per_page' => $products,
'orderby' => $orderby,
'order' => $order == 'asc' ? 'asc' : 'desc',
'tax_query' => $tax_query // <===
) );
参考文献:
您可以使用
wc_get_featured_product_ids()
function获取精选产品ID数组,但在WP_Query
中使用纳税查询就可以了和正确的方式......
相关:
它应该有用。
答案 1 :(得分:3)
您现在可以将wc_get_products的参数功能设置为true。参见https://github.com/woocommerce/woocommerce/wiki/wc_get_products-and-WC_Product_Query
$args = array(
'featured' => true,
);
$products = wc_get_products( $args );
对于希望按类别获取特色产品的人,您可以查看我关于此=> https://jameshwartlopez.com/plugin/get-featured-products-of-a-category/
的注释答案 2 :(得分:2)
这是一个老问题,但您也可以使用wc_get_featured_product_ids():
$args = array(
'post_type' => 'product',
'posts_per_page' => $products,
'orderby' => $orderby,
'order' => $order == 'asc' ? 'asc' : 'desc',
'post__in' => wc_get_featured_product_ids(),
);
$query = new WP_Query( $args );
刚刚在这里发现了它。我希望它有所帮助!
答案 3 :(得分:1)
$args = array(
'post_type' => 'product',
'posts_per_page' => 12,
'tax_query' => array(
array(
'taxonomy' => 'product_visibility',
'field' => 'name',
'terms' => 'featured',
),
),
);
$loop = new WP_Query( $args );
if ( $loop->have_posts() ) {
while ( $loop->have_posts() ) : $loop->the_post();
wc_get_template_part( 'content', 'product' );
endwhile;
} else {
echo __( 'No products found' );
}
wp_reset_postdata();