Skip to content

Instantly share code, notes, and snippets.

@strangerstudios
Created February 18, 2015 17:33
Show Gist options
  • Select an option

  • Save strangerstudios/2e899012f4fce108242e to your computer and use it in GitHub Desktop.

Select an option

Save strangerstudios/2e899012f4fce108242e to your computer and use it in GitHub Desktop.
pmpro_confirmation_url Example.
function my_pmpro_confirmation_url($url, $user_id, $level)
{
$url = home_url("/the-content/"); //change this to the url you want to redirect to
return $url;
}
add_filter('pmpro_confirmation_url', 'my_pmpro_confirmation_url', 10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment