分类学术语的逗号分隔列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了分类学术语的逗号分隔列表相关的知识,希望对你有一定的参考价值。

Create a comma separated list of a post's custom taxonomy terms.
  1. <?php
  2. // Get a list of terms for this post's custom taxonomy.
  3. $project_cats = get_the_terms($post->ID, 'TAXONOMY_NAME');
  4. // Renumber array.
  5. $project_cats = array_values($project_cats);
  6. for($cat_count=0; $cat_count<count($project_cats); $cat_count++) {
  7. // Each array item is an object. Display its 'name' value.
  8. echo $project_cats[$cat_count]->name;
  9. // If there is more than one term, comma separate them.
  10. if ($cat_count<count($project_cats)-1){
  11. echo ', ';
  12. }
  13. }
  14. ?>

以上是关于分类学术语的逗号分隔列表的主要内容,如果未能解决你的问题,请参考以下文章

php Wordpress - 以逗号分隔的帖子术语列表

db2 将逗号分隔数据转换为多值IN列表

Python逗号分隔列表

从逗号分隔的字符串 [XML/XSL] 创建选择下拉列表

pyspark 从逗号分隔值列表中创建多行

将结果转换为逗号分隔列表