问题描述

什么功能会显示自定义分类与文章相关的文章?

我目前正在使用 get_the_term_list,它对单个页面非常有用,但在 archive-postype.php 固定链接标题标签中使用分类法则不太好。

最佳解决方案

wp_get_object_terms() 返回与对象相关联的术语 (例如,一个帖子或页面或自定义帖子) 作为文本 (通常在数组中) 。

来自 the Codex page for wp_get_object_terms()

$productcategories = wp_get_object_terms($post->ID, 'productcategories');

次佳解决方案

但是 @anu 是对的,我想出你可以调用 php 函数 strip_tags 去除返回值的标签。

$terms = get_the_term_list( $post->ID, 'tags' );
$terms = strip_tags( $terms );

参考文献

注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。