Restrict Content Pro

rcp_get_member_cancel_url()

Coming soon: Restrict Content Pro is becoming Kadence Memberships. You may see both names used while we update the product, documentation, and customer experience.

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() ) ); }
Last updated: August 12, 2026
Was this page helpful?
Thanks for the feedback!