Jetpack::opt_out_jetpack_manage_url PHP Method

opt_out_jetpack_manage_url() public method

Returns the url that the user clicks to remove the notice for the big banner
public opt_out_jetpack_manage_url ( ) : (string)
return (string)
    function opt_out_jetpack_manage_url()
    {
        $referer = '&_wp_http_referer=' . add_query_arg('_wp_http_referer', null);
        return wp_nonce_url(Jetpack::admin_url('jetpack-notice=jetpack-manage-opt-out' . $referer), 'jetpack_manage_banner_opt_out');
    }
Jetpack