douben8492 2018-06-01 18:09
浏览 60
已采纳

在分类页面上显示当前分类的自定义字段

I have a custom taxonomy called Books with 2 custom taxonomy fields. One is called book_tagline and other called book_short_desc

So for example If I have a Books Category like School Books and the 2 custom fields contains values as

book_tagline = 12th grade all school books book_short_desc = we have all 12th grade school books...

On the Books Category page I would like to display the above 2 custom fields

Here is my code but its not displaying the values

$termcat = get_term_by( 'slug', get_query_var('term'), get_query_var('taxonomy') );
$icat_id = $termcat->term_id;
$icat_tag = get_term_meta($icat_id, '_pc_ccat_tagline');
 $icat_desc = get_term_meta($icat_id, '_pc_ccat_desc');

The above code is not inside a loop. But the code is in the taxonomy-books template page

Thanks

  • 写回答

1条回答 默认 最新

  • doulvli9462 2018-06-01 18:56
    关注

    Try below code

    $pc_ccat_tagline = get_term_meta( get_queried_object_id(), '_pc_ccat_tagline', true);
    
    $pc_ccat_desc = get_term_meta( get_queried_object_id(), '_pc_ccat_desc', true);
    

    Do not forget to do echo.

    If this code does not work than just pass true in your code

    $icat_desc = get_term_meta($icat_id, '_pc_ccat_desc',true);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题
  • ¥30 python代码,帮调试
  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元