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/
rcp_get_paid_posts()
This function returns an array of all post IDs that require a paid subscription in order to view.
This is a wrapper for the get_posts() function with the following arguments:
$args = array(
‘meta_key’ => ‘_is_paid’,
‘meta_value’ => 1,
‘post_status’ => ‘publish’,
‘posts_per_page’ => -1,
‘post_type’ => ‘any’,
‘fields’ => ‘ids’
);