dongyun65343 2019-03-07 09:54
浏览 47
已采纳

woocommerce中的回声类别名称

I would like to change the Text of the related products, wich is at the end of the product detail page. At the moment i'm displaying This could be interesting by using this code

 <h2><?php esc_html_e( 'This could be interesting', 'woocommerce' ); ?></h2>

What i would like to display is Our favorite category name

I tried to expand the code with this snippet, without any success

<?php echo wc_get_product_category_list($product->get_id()) ?>

How is it possible to get this function done?

Thx

  • 写回答

1条回答 默认 最新

  • doujiacai4986 2019-03-07 10:10
    关注

    Here is a little helper function that you could put in your functions.php

    function get_favorite_category_title_for( $product_id ) {
        $title = __('This could be interesting', 'woocommerce');
    
        $cats = wp_get_post_terms( $product_id, 'product_cat' );
        if( count($cats) > 0 ) {
            $title = __( 'Our favorite ', 'woocommerce' ) . $cats[0]->name;
        }
    
        return $title;
    }
    

    and then replace the h2 tag with:

    <h2><?php echo get_favorite_category_title_for( get_queried_object_id() ); ?></h2>

    you can change get_queried_object_id with the $product->get_id() if you have access to $product object.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动