// 随机选择作者
function random_author() {
// 获取站点作者
$authors = get_users( array( 'role' => 'author' ) );
// 随机选择作者
$random_author = $authors[ array_rand( $authors ) ];
return $random_author;
}
// 发布文章随机选择一个作者
add_filter( 'wp_insert_post_data', 'apply_random_author', 10, 2 );
function apply_random_author( $data, $postarr ) {
if ( $data['post_type'] == 'post' && $data['post_status'] == 'publish' ) {
$author = random_author();
$data['post_author'] = $author->ID ? $author->ID : 1;
}
return $data;
}