airesvsg / acf-to-rest-api-recursive
Get ACF fields recursively
Installs: 2 338
Dependents: 0
Suggesters: 0
Security: 0
Stars: 43
Watchers: 2
Forks: 8
Open Issues: 9
Type:wordpress-plugin
Requires
- php: >=5.3.2
- composer/installers: ~1.5
This package is auto-updated.
Last update: 2024-11-12 07:41:23 UTC
README
Get ACF Fields Recursively
Installation
- Copy the
acf-to-rest-api-recursive
folder into yourwp-content/plugins
folder - Activate the
ACF to REST API Recursive
plugin via the plugin admin page
Filters
How to use:
add_filter( 'acf/rest_api/recursive/types', function( $types ) { if ( isset( $types['post'] ) ) { unset( $types['post'] ); } return $types; } );