do_action( 'um_activate_url', $url )
Filter to change the base URL for the user activation link.
Parameters:
Name | Type | Description |
---|---|---|
$url |
string | The base URL. |
- Since:
- 1.3.x
- Source:
Example
Change activate user base URL.
function my_after_email_confirmation_redirect( $url ) {
// your code here
return $url;
}
add_filter( 'um_activate_url', 'my_um_activate_url' );