分类学术语的逗号分隔列表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了分类学术语的逗号分隔列表相关的知识,希望对你有一定的参考价值。
Create a comma separated list of a post's custom taxonomy terms.
<?php // Get a list of terms for this post's custom taxonomy. $project_cats = get_the_terms($post->ID, 'TAXONOMY_NAME'); // Renumber array. // Each array item is an object. Display its 'name' value. echo $project_cats[$cat_count]->name; // If there is more than one term, comma separate them. echo ', '; } } ?>
以上是关于分类学术语的逗号分隔列表的主要内容,如果未能解决你的问题,请参考以下文章