你可以用一个简单的脚本来实现这一点。重要!-在执行此操作之前备份数据库(&P);风险自负。
创建一个名为changeauthorcat的文件。php在您的主WordPress文件夹中。
<?php
include( \'wp-config.php\' );
global $wpdb;
// Author username
$username = \'exampleuser\';
// New category slug
$newCatSlug = \'examplecategory\';
// find the right author
$author = get_user_by( \'login\', $username );
// find the right category
$category = get_category_by_slug( $newCatSlug );
if ( $author && $category ) {
$posts = get_posts( array(
\'numberposts\' => -1,
\'author\' => $author->ID
)
);
if ( $posts ) {
foreach ( $posts as $post ) {
// update all categories
// the last parameter of false will replace all existing categories
// see https://codex.wordpress.org/Function_Reference/wp_set_post_categories
wp_set_post_categories( $post->ID, array( $category->term_id ), false );
}
}
}
?>
将“exampleuser”更改为要更改的作者的登录名。将“ExampleCography”更改为新类别的slug。
导航到http://yourdomain.com/changeauthorcat.php.完成后删除文件。
请注意,这将从这些帖子中删除其他所有类别,并仅将它们放在新类别中。使用wp\\u set\\u post\\u categories功能也将使用正确的类别计数更新数据库。阅读更多信息:https://codex.wordpress.org/Function_Reference/wp_set_post_categories