基于Vocab ID呈现分类术语

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于Vocab ID呈现分类术语相关的知识,希望对你有一定的参考价值。

  1. function render_terms($node,$vocabid,$title=null,$divclass=null) {
  2.  
  3. $terms = taxonomy_node_get_terms_by_vocabulary($node, $vocabid );
  4. if ($terms) {
  5.  
  6. $output = '<div class="field field-item'. ' '.$divclass .'"><div class="field-label-inline-first">' .$title .' </div> ' ;
  7. $term_links = array();
  8. foreach ($terms as $term) {
  9. $term_links[] = l($term->name, taxonomy_term_path($term), array('attributes' => array('rel' => 'tag', 'title' => strip_tags($term->description)))) ;
  10. $output .= implode(", ", $term_links);
  11. }
  12. }
  13. $output .='</div>';
  14. return ($output);
  15. }

以上是关于基于Vocab ID呈现分类术语的主要内容,如果未能解决你的问题,请参考以下文章

WP - 基于匹配分类术语的 get_template_part

Drupal 7 - 基于页面的分类术语?

基于词汇的 Drupal 变化展示

使用 ACF 从分类术语中获取图像

WordPress 根据分类术语显示相关帖子

关键词提取和基于关键词的文本分类