在 woocommerce 产品页面中用类别描述替换类别名称

发布于 2025-01-09 18:35:55 字数 732 浏览 0 评论 0原文

我正在尝试使用以下脚本将类别名称替换为类别描述(仅当类别描述不为空时):

add_action( 'woocommerce_archive_description', 'bbloomer_show_all_subcats', 2 );
 
function bbloomer_show_all_subcats() {
   global $product;
   $cats = get_the_terms( $product->get_id(), 'product_cat' );
   $cat_descr = join('', wp_list_pluck($cats, 'description'));
   $categ = join('', wp_list_pluck($cats, 'name'));
   if ($cat_descr){
   echo '<div class="mf-catalog-title">'.$cat_descr.'</div>';
   } else {
   echo '<div class="mf-catalog-title">'.$categ.'</div>';
   }
}

该脚本正在运行,但是当我在两个类别中有相同的产品时,类别名称会重复。当我有类别描述时,不会重复。只需类别名称即可。为什么会发生这种情况?

主题显示了他自己的类别名称,但我用一些 CSS 隐藏了它。哪个 php 钩子 (remove_action) 会消失类别名称?

谢谢。

I'm trying to replace the category name with category description (only if category description is not empty) with the below script:

add_action( 'woocommerce_archive_description', 'bbloomer_show_all_subcats', 2 );
 
function bbloomer_show_all_subcats() {
   global $product;
   $cats = get_the_terms( $product->get_id(), 'product_cat' );
   $cat_descr = join('', wp_list_pluck($cats, 'description'));
   $categ = join('', wp_list_pluck($cats, 'name'));
   if ($cat_descr){
   echo '<div class="mf-catalog-title">'.$cat_descr.'</div>';
   } else {
   echo '<div class="mf-catalog-title">'.$categ.'</div>';
   }
}

The script is working but when I have same products in two categories, the category name is duplicating. When I have a category description, is not duplicating. Only the category name does it. Why does this happen?

The theme displays from his own the category name, but I hide this with some CSS. Which php hook (remove_action) disappears the category name?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏至、离别 2025-01-16 18:35:55

我自己找到了解决方案。

function cat_description() {
   global $product;
   $cats = get_the_terms( $product->get_id(), 'product_cat' );
   $cat_descr = wp_list_pluck($cats, 'description');
   $cat_name = wp_list_pluck($cats, 'name');
   echo '<div class="mf-catalog-title">';
   if ($cat_descr[0]){
   echo $cat_descr[0];
   } else {
   echo $cat_name[0];
   }
   echo '</div>';
}
add_action( 'woocommerce_archive_description', 'cat_description', 2 );

i found the solution myself.

function cat_description() {
   global $product;
   $cats = get_the_terms( $product->get_id(), 'product_cat' );
   $cat_descr = wp_list_pluck($cats, 'description');
   $cat_name = wp_list_pluck($cats, 'name');
   echo '<div class="mf-catalog-title">';
   if ($cat_descr[0]){
   echo $cat_descr[0];
   } else {
   echo $cat_name[0];
   }
   echo '</div>';
}
add_action( 'woocommerce_archive_description', 'cat_description', 2 );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文