dongqiao1158 2016-05-12 02:44
浏览 67
已采纳

如何在自定义分类模板中获取分类名称?

I would like to show custom taxonomy name from a page to custom taxonomy template.

e.g My all taxonomies are displaying on a page(xyz) and when i click on particular taxonomy name it goes to my custom taxonomy template (taxonomy-mycustom_tax.php ) but in this page i could not get name of taxonomy from URL.

taxonomy name seeing in URL like(http:/site_name/cust_taxonomy/name_of_term/).

i have also tried like this way..

<?php 
$slugs = explode('/', get_query_var('category_name'));
$currentCategory = get_category_by_slug('/'.end($slugs));
?>
  • 写回答

1条回答 默认 最新

  • dpp42324 2016-05-12 03:40
    关注

    In order to get the taxonomy name in the taxonomy-taxonmyname.php file you can use the following code.

    single_cat_title('prefix', bool $display=true );
    

    The function has two arguements.

    See more about this on https://developer.wordpress.org/reference/functions/single_cat_title/

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

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部