drwurqczo39355510 2014-12-09 04:02
浏览 31
已采纳

wp_list_categories显示当前帖子的类别

I want to show only categories name and link of the current post page. For example i have a post lets say "test123" and I have linked the post with 2 categories "ab","bc". However I have 5 different categories. So I want to show only 2 categories "ab","bc" when user goes to the "test123" page.

Please see my code below it is showing all the categories but I want to show only categories which are linked with the current post page.

wp_list_categories( 'number=5' ); ?>
  • 写回答

1条回答 默认 最新

  • duanhuren5581 2014-12-09 04:06
    关注
    <?php the_category(); ?> 
    

    or, if you want more options:

    <?php the_category( $separator, $parents, $post_id ); ?> 
    

    This will do the trick. It can also be used like this:

    <?php $catArr = get_the_category( $id ); ?>
    

    Reference:

    http://codex.wordpress.org/Template_Tags/the_category http://codex.wordpress.org/Function_Reference/get_the_category

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

报告相同问题?

悬赏问题

  • ¥15 powerbuilder中的datawindow数据整合到新的DataWindow
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源
  • ¥15 安卓JNI项目使用lua上的问题
  • ¥20 RL+GNN解决人员排班问题时梯度消失
  • ¥60 要数控稳压电源测试数据
  • ¥15 能帮我写下这个编程吗
  • ¥15 ikuai客户端l2tp协议链接报终止15信号和无法将p.p.p6转换为我的l2tp线路
  • ¥15 phython读取excel表格报错 ^7个 SyntaxError: invalid syntax 语句报错
  • ¥20 @microsoft/fetch-event-source 流式响应问题