在构建WooCommerce网站时,他们可以非常轻松地在存档和类别页面上显示类别和子类别。
但有人知道是否可以在(内容 - 单品)页面模板中添加类别/子类别列表?
我有一个只有少量产品的商店,我们希望用户能够从侧面菜单中快速选择,而不是在存档页面和产品页面之间前后移动。
感谢任何可以提供帮助的人。
答案 0 :(得分:0)
$prod_cat_args = array(
'taxonomy' => 'product_cat', //woocommerce
'orderby' => 'name',
'empty' => 0
);
$woo_categories = get_categories( $prod_cat_args );
foreach ( $woo_categories as $woo_cat ) {
$woo_cat_id = $woo_cat->term_id; //category ID
$woo_cat_name = $woo_cat->name; //category name
$return .= '<a href="' . get_category_link( $woo_cat_id ) . '">' . $woo_cat_name . '</a>';
}
答案 1 :(得分:0)
$prod_cat_args = array(
'posts_per_page' => 5,
'offset' => 0,
'category' => '',
'category_name' => '',
'orderby' => 'date',
'order' => 'DESC',
'include' => '',
'exclude' => '',
'meta_key' => '',
'meta_value' => '',
'post_type' => 'post',
'post_mime_type' => '',
'post_parent' => '',
'author' => '',
'post_status' => 'publish',
'suppress_filters' => true
);
you can also edit all fields try this