谷歌知道这一点。
如果要将类别添加到ID为42的帖子中,请执行以下操作:
$cat_ids = array( 6,8 );
//to make sure the terms IDs is integers:
//$cat_ids = array_map(\'intval\', $cat_ids);
//$cat_ids = array_unique( $cat_ids );
wp_set_object_terms( \'42\', $cat_ids, \'category\' );
如果要清除/删除ID为42的帖子中的所有类别:
wp_set_object_terms( \'42\', NULL, \'category\' );
了解更多信息
wp_set_object_terms