是的,是的。但您必须知道确切的分类法的slug,因为颜色不像以编程方式生成的保留术语。下面是一个如何操作的示例:
// run our function when a post is published
add_action(\'save_post\',\'update_my_taxonomies\');
function update_my_taxonomies($post_id){
// Check if the post has a particular taxonomy
if(has_term( \'blue\', \'colors\', $post_id )){
// Assign a term to our post
wp_set_object_terms( $post_id, \'blue\', \'blue_bike\' );
}
}
这将设置
blue
对于
blue_bike
如果该职位有
blue
术语作为其
color
分类学