gpt4 book ai didi

wordpress - 如何获得woocommerce中最受欢迎产品的类别列表

转载 作者:行者123 更新时间:2023-12-03 08:17:15 25 4
gpt4 key购买 nike

我怎样才能列出top 5 most popular category (或最受欢迎的产品类别)在我的 wordpress 上网站首页。
我用过 woocommerce产品插件。

在此先感谢您的任何建议或解决方案。

最佳答案

由于没有一个答案是作者问题的解决方案,这就是我想出的。这是一个按类别列出热门产品的短代码片段。我所说的流行是指最畅销的产品(如总销售额)。

function bestselling_products_by_categories( $atts ){

global $woocommerce_loop;

extract(shortcode_atts(array(
'cats' => '',
'tax' => 'product_cat',
'per_cat' => '5',
'columns' => '5',
'include_children' => false,
'title' => 'Popular Products',
'link_text' => 'See all',
), $atts));

if(empty($cats)){
$terms = get_terms( 'product_cat', array('hide_empty' => true, 'fields' => 'ids'));
$cats = implode(',', $terms);
}

$cats = explode(',', $cats);

if( empty($cats) )
return '';

ob_start();

foreach($cats as $cat){

// get the product category
$term = get_term( $cat, $tax);

// setup query
$args = array(
'post_type' => 'product',
'post_status' => 'publish',
'ignore_sticky_posts' => 1,
'posts_per_page' => $per_cat,
'meta_key' => 'total_sales',
'orderby' => 'meta_value_num',
'tax_query' => array(
array(
'taxonomy' => $tax,
'field' => 'id',
'terms' => $cat,
'include_children' => $include_children,
)
),
'meta_query' => array(
array(
'key' => '_visibility',
'value' => array( 'catalog', 'visible' ),
'compare' => 'IN'
)
)
);

// set woocommerce columns
$woocommerce_loop['columns'] = $columns;

// query database
$products = new WP_Query( $args );

$woocommerce_loop['columns'] = $columns;

if ( $products->have_posts() ) : ?>

<?php if ( shortcode_exists('title') ) : ?>
<?php echo do_shortcode('[title text="'. $title .'" link="' . get_term_link( $cat, 'product_cat' ) . '" link_text="' . $link_text . '"]'); ?>
<?php else : ?>
<?php echo '<h2>'. $title .'</h2>'; ?>
<?php endif; ?>

<?php woocommerce_product_loop_start(); ?>

<?php while ( $products->have_posts() ) : $products->the_post(); ?>

<?php woocommerce_get_template_part( 'content', 'product' ); ?>

<?php endwhile; // end of the loop. ?>

<?php woocommerce_product_loop_end(); ?>

<?php endif;

wp_reset_postdata();
}

return '<div class="woocommerce columns-' . $columns . '">' . ob_get_clean() . '</div>';

} add_shortcode( 'custom_bestselling_product_by_categories', 'bestselling_products_by_categories' );

您可以通过调用它来使用它:
<?php echo do_shortcode('[custom_bestselling_product_by_categories cats="' . $term->term_id . '"]'); ?>

此简码有一些选项:
cats :要从中检索产品的类别 ID 或逗号分隔的 ID。
tax : 从中获取产品的分类法,默认为 product_cat per_cat :要检索的产品数量
columns : 要显示的列数
include_children : 如果为 false 则仅显示该类别的直接子项,如果为 true 则将显示子项的子项
title : 显示标题
link_text :链接到商店的链接文本

请注意,此代码段假定您有一个名为 title 的短代码。它需要一些其他参数,例如 linklink_text论据。您可以随时根据您的主题更改此设置。

希望能帮助到你。

关于wordpress - 如何获得woocommerce中最受欢迎产品的类别列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25201690/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com