
Redirect Author Archive Page to BuddyPress User Profile
If you have enabled BuddyPress and want to redirect to user's profile when someone tries to access the author archive page, you can use the following code. function buddydev_author_redirect_to_profile() { if ( is_author() && function_exists( 'bp_core_redirect' ) ) { $author_id = get_queried_object_id(); bp_core_redirect( bp_core_get_user_domain( $author_id ) ); } } add_action( 'template_redirect', 'buddydev_author_redirect_to_profile' ); Isn't that …