我有以下代码,它以文本形式给出了公文包类别的列表。我该怎么做才能将它们作为链接呢?非常感谢。
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(\', \' );
}
}
最合适的回答,由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(\', \' );
}
}