Skip to content

Instantly share code, notes, and snippets.

@alhoseany
Last active April 13, 2016 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alhoseany/8c9059831c56357a3b336fd4c4877002 to your computer and use it in GitHub Desktop.
Save alhoseany/8c9059831c56357a3b336fd4c4877002 to your computer and use it in GitHub Desktop.
Redirect Buddypress profile edit screen to custom wordpress page
add_action('xprofile_screen_edit_profile', 'redirect_to_account_setup');
function redirect_to_account_setup(){
wp_redirect( get_permalink( get_page_by_path( 'account-setup' ) ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment