bbp_user_lost_pass_redirect_to
bbp_user_lost_pass_redirect_to
Appears in: bbpress.2.5.14, bbpress.2.6.0, bbpress.2.6.1, bbpress.2.6.11, bbpress.2.6.2, bbpress.2.6.3, bbpress.2.6.4, bbpress.2.6.5, bbpress.2.6.6, bbpress.2.6.9
Hook Type: filter
Displaying hooks found in version: bbpress.2.6.9apply_filters('bbp_user_lost_pass_redirect_to') is found 1 times:
- /includes/users/template.php line 1973
<?php // Allow custom lost pass redirection $redirect_to = apply_filters( 'bbp_user_lost_pass_redirect_to', get_permalink() ); bbp_redirect_to_field( add_query_arg( array( 'checkemail' => 'confirm' ), $redirect_to ) ); // Prevent intention hi-jacking of lost pass form wp_nonce_field( 'bbp-user-lost-pass' ); }