The members app()->namespace . '/get redirect url' hook.
Published Date - July 31, 2023
return apply_filters( app()->namespace . '/get_redirect_url', get_setting( 'redirect_url' ) );
$get_setting
The following example is for adding a hook callback.
// define the app()->namespace . '/get_redirect_url' callback
function custom_app()->namespace . '_get_redirect_url'( $get_setting ){
//custom code here
return $get_setting
}
//add the action
add_filter('app()->namespace . '/get_redirect_url'', 'custom_app()->namespace . '/get_redirect_url'', 10, 1)
The filter is defined in the following location(s).
members/addons/members-admin-access/app/functions.php
return apply_filters( app()->namespace . '/get_redirect_url', get_setting( 'redirect_url' ) );