如何将用户与帖子关联?如果你想让用户成为文章作者,你可以试试pre_get_posts
钩
function user_author_pre_get_posts( $query ) {
$user_id = get_current_user_id(); // Get logged in user ID or pass specific user ID here
if ( ( $query->is_author() || $query->is_category() ) && $query->is_main_query() ) {
$query->set( \'author__in\', $user_id );
}
}
add_action( \'pre_get_posts\', \'user_author_pre_get_posts\' );