rcp_get_member_cancel_url()

Note: This is part of the developer docs and is considered custom code.
Unfortunately, we cannot provide support for custom code at this time as we do not have the additional resources that would be necessary to provide support for custom code. 

If you need assistance with this, please reach out to our list of consultants for further assistance:
https://codeable.io/developers/restrict-content-pro/
This function has been deprecated. Use rcp_get_membership_cancel_url() instead.
Returns the subscription cancellation URL for a given member. It’s a good idea to pair this with rcp_can_member_cancel().
Parameters:

$user_id – ID of the user to check. If omitted, the currently logged in user is used.

Return values:

(string) Cancellation URL. An empty string may be returned if the user does not have a recurring subscription.

Example usage:
if ( rcp_can_member_cancel() ) {
printf( __( ‘Click here to cancel your subscription‘, ‘rcp’ ), esc_url( rcp_get_member_cancel_url() ) );
}

Have more questions?

Submit a request