airesvsg / acf-to-rest-api-recursive
Get ACF fields recursively
Installs: 2 449
Dependents: 0
Suggesters: 0
Security: 0
Stars: 44
Watchers: 1
Forks: 7
Open Issues: 9
Type:wordpress-plugin
pkg:composer/airesvsg/acf-to-rest-api-recursive
Requires
- php: >=5.3.2
- composer/installers: ~1.5
This package is auto-updated.
Last update: 2025-10-12 09:36:56 UTC
README
Get ACF Fields Recursively
Installation
- Copy the acf-to-rest-api-recursivefolder into yourwp-content/pluginsfolder
- Activate the ACF to REST API Recursiveplugin via the plugin admin page
Filters
| Filter | Argument(s) | 
|---|---|
| acf/rest_api/recursive/types | array $types | 
How to use:
add_filter( 'acf/rest_api/recursive/types', function( $types ) { if ( isset( $types['post'] ) ) { unset( $types['post'] ); } return $types; } );