在Woocommerce的子类别页面中显示主要类别,可以通过以下步骤实现:
<?php
$parent_category = get_term_by('slug', 'your-parent-category-slug', 'product_cat');
$parent_category_id = $parent_category->term_id;
$parent_category_name = $parent_category->name;
$args = array(
'taxonomy' => 'product_cat',
'child_of' => $parent_category_id,
'hide_empty' => false,
);
$child_categories = get_categories($args);
if ($child_categories) {
echo '<ul>';
foreach ($child_categories as $child_category) {
echo '<li><a href="' . get_category_link($child_category->term_id) . '">' . $child_category->name . '</a></li>';
}
echo '</ul>';
}
?>
请注意替换代码中的“your-parent-category-slug”为你的主要类别的slug。
woocommerce/templates/content-product_cat.php
),保存并上传到你的WordPress主题文件夹中。推荐的腾讯云相关产品:腾讯云服务器(https://cloud.tencent.com/product/cvm)和腾讯云数据库(https://cloud.tencent.com/product/cdb)。这些产品可以提供稳定可靠的云计算基础设施和数据库服务,以支持你的网站和应用程序的运行和存储需求。
领取专属 10元无门槛券
手把手带您无忧上云