warning: 截断wp\\u term\\u关系将删除该表中的所有内容!如果只想删除标记术语关系,请确保使用正确的sql。
截断wp\\u term\\u relationships表后,我使用自定义脚本重新标记我的帖子。您可以执行类似的操作:
$numposts = wp_count_posts();
$posts = get_posts(array(\'numberposts\'=>(int)$numposts->publish));
foreach($posts as $post){
$tags = myCustomTaggingFunc($post); //this returns an array of tags
wp_update_term($post->ID,$tags);
}
非常简单。