如何列出带有链接的自定义分类术语?

时间:2019-09-30 作者:Dande

我有以下代码,它以文本形式给出了公文包类别的列表。我该怎么做才能将它们作为链接呢?非常感谢。

  function thb_display_category_cus() {
  if (\'portfolio\' === get_post_type() ) {
    $categories = get_the_term_list( get_the_ID(), \'portfolio-category\', \'\', \', \', \'\' );
    if ($categories !== \'\' && !empty($categories) ) {
        $categories = strip_tags($categories);
    }


 echo 

    esc_html($categories); 


      } else {
        the_category(\', \' );
      }
    }

1 个回复
最合适的回答,由SO网友:Dallas Price 整理而成

WebElain是正确的,但是,您还对HTML进行了转义。整个代码块应为:

  function thb_display_category_cus() {
  if (\'portfolio\' === get_post_type() ) {
    $categories = get_the_term_list( get_the_ID(), \'portfolio-category\', \'\', \', \', \'\' );



 echo $categories


      } else {
        the_category(\', \' );
      }
    }

相关推荐

Filter Custom Taxonomy Posts

我有一个自定义的分类页面,它也有一个向上的滑块。问题是滑块显示来自所有分类法而非当前分类法的随机帖子。是否有办法过滤滑块中的图像,使其仅使用当前分类法?<?php global $taxonomy_location_url, $taxonomy_profile_url; $args = array( \'post_type\' => $taxonomy_profile_url, \'orderby\' => \'rand\', \'meta_que