Wordpress类别功能

时间:2012-01-06 14:09:32

标签: wordpress

这是我关于programmatically adding wordpress categories based on post content的问题的后续内容。

Wordpress Universe中有哪些功能可供插件开发人员使用:

  1. 检查是否存在类别
  2. 创建新类别
  3. 将帖子分配到类别

1 个答案:

答案 0 :(得分:2)

这些怎么样:

  1. 要查看某个帖子上是否存在类别,请使用get_the_category($ id)并检查它返回的内容。要查看某个类别是否存在,请使用is_category($ category)
  2. 使用wp_create_category($ name,$ parent)
  3. 使用wp_set_object_terms($ object_id,$ terms,$ taxonomy,$ append)