在wordpress中获取当前帖子的分类术语

时间:2012-12-07 16:31:40

标签: wordpress

我正在尝试使用与当前帖子相关联的分类术语填充表单值字段

我必须尝试过20件事,但无法找到合适的解决方案。?

我有元字段,但我很容易使用它:

$ref = get_post_meta( $post->ID, 'job_ref', true ); 

和表格字段:

  <input type="text" class="text" name="job_ref" id="job_ref" value="
  <?php echo $ref; ?>" /> 

所以我正在为分类术语寻找类似的解决方案..?

非常感谢

2 个答案:

答案 0 :(得分:9)

使用wp_get_post_terms检索您的帖子字词。语法在这里:

http://codex.wordpress.org/Function_Reference/wp_get_post_terms

答案 1 :(得分:0)

您可以使用get_the_terms()get_the_terms()wp_get_post_terms()之间的区别在于get_the_terms()的结果被缓存。