airesvsg/acf-to-rest-api-recursive

Get ACF fields recursively

dev-master 2019-02-28 12:54 UTC

This package is auto-updated.

Last update: 2024-09-12 07:18:20 UTC


README

Get ACF Fields Recursively

Installation

  1. Copy the acf-to-rest-api-recursive folder into your wp-content/plugins folder
  2. 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;
} );