Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save AngeliMae/132ca9ecbcadefa39bb849b592f8abf2 to your computer and use it in GitHub Desktop.

Select an option

Save AngeliMae/132ca9ecbcadefa39bb849b592f8abf2 to your computer and use it in GitHub Desktop.
Redirect user to author page instead of UM user profile page
add_filter( 'um_ajax_get_members_data', 'my_um_author_custom_url', 10, 3 );
function my_um_author_custom_url( $data_array, $user_id, $directory_data ) {
$data_array['profile_url'] = esc_url( get_author_posts_url( $user_id ) );
return $data_array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment