Wordpress在帖子上设置分类法?

时间:2013-12-07 06:20:56

标签: php wordpress

你好这是我的代码,用于按帖子ID选择分类。

这是我的代码,此代码无效请帮助。

wp_set_post_terms( '2653', array('Bus'), 'category_type_bus');

当我运行该代码时,这是我的代码。然后在后端检查后。未选择公交车请告诉我哪里错了。

谢谢。

1 个答案:

答案 0 :(得分:1)

我觉得你错过了另一个参数,这是一个选项。您可以尝试传递true,以便它可以附加到现有。

尝试类似的东西

wp_set_post_terms( '2653', array('Bus'), 'category_type_bus',true);

如果上述内容不起作用,请尝试传递术语ID而不是名称。像这样的东西

wp_set_post_terms( '2653', array( 5 ), 'category_type_bus',true);