Created
February 18, 2015 17:33
-
-
Save strangerstudios/2e899012f4fce108242e to your computer and use it in GitHub Desktop.
pmpro_confirmation_url Example.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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