我有一个大约350个术语的列表,我正试图设置为一个职位。这是我的代码:
add_action(\'init\', \'add_cities_to_story\');
function add_cities_to_story() {
$cities_list = get_term_children(\'115\', \'location\'); // MA
wp_set_object_terms(\'632\', $cities_list, \'location\');
}
问题是,它似乎在列表的四分之三处超时。
还有,你知道如何从帖子中批量删除标签吗