All Projects → airesvsg → Acf To Rest Api Recursive

airesvsg / Acf To Rest Api Recursive

Get ACF fields recursively

Projects that are alternatives of or similar to Acf To Rest Api Recursive

Hoppscotch
👽 Open source API development ecosystem https://hoppscotch.io
Stars: ✭ 34,569 (+90871.05%)
Mutual labels:  rest-api
Plaid.net
A .NET standard library for interacting with Plaid's banking APIs.
Stars: ✭ 30 (-21.05%)
Mutual labels:  rest-api
Openapi To Graphql
Translate APIs described by OpenAPI Specifications (OAS) into GraphQL
Stars: ✭ 973 (+2460.53%)
Mutual labels:  rest-api
Liberator
An Elixir library for building RESTful applications.
Stars: ✭ 28 (-26.32%)
Mutual labels:  rest-api
Compreface
Free and open-source face recognition system from Exadel
Stars: ✭ 947 (+2392.11%)
Mutual labels:  rest-api
Siodb
The simplicity of REST and the power of SQL combined in a database that automatized security and performance. Forget the database, develop faster and safer!
Stars: ✭ 31 (-18.42%)
Mutual labels:  rest-api
Boilerplate Nodejs Swagger
A Node.js RESTful API application boilerplate with TypeScript, Docker, Koa, Swagger, Jest, and CircleCI
Stars: ✭ 21 (-44.74%)
Mutual labels:  rest-api
Drive
☁️ A distributed cloud based lazy drive to files integrated with Dropbox, Google Drive.
Stars: ✭ 36 (-5.26%)
Mutual labels:  rest-api
Confluence Python Lib
A python library wrapping the Confluence REST API
Stars: ✭ 30 (-21.05%)
Mutual labels:  rest-api
Easyappointments Mobile Client
Mobile client for Easy!Appointments Web Scheduler
Stars: ✭ 33 (-13.16%)
Mutual labels:  rest-api
Fast bitrix24
Высокопроизводительный API wrapper для Питона для быстрого массового обмена данными с Битрикс24 через REST API
Stars: ✭ 28 (-26.32%)
Mutual labels:  rest-api
Powershell Command Executor
node.js module that provides a registry and gateway for execution powershell commands through long-lived established remote PSSessions
Stars: ✭ 29 (-23.68%)
Mutual labels:  rest-api
Server
Serve your Rubix ML models in production with scalable stand-alone model inference servers.
Stars: ✭ 30 (-21.05%)
Mutual labels:  rest-api
Elasticsearch Java Rest
Elasticsearch Java Rest 手册
Stars: ✭ 27 (-28.95%)
Mutual labels:  rest-api
Discord4j
Discord4J is a fast, powerful, unopinionated, reactive library to enable quick and easy development of Discord bots for Java, Kotlin, and other JVM languages using the official Discord Bot API.
Stars: ✭ 973 (+2460.53%)
Mutual labels:  rest-api
Play Zhewbacca
Play! framework library to protect REST endpoint by OAuth2 token verification. Supports Play versions 2.5, 2.6, 2.7
Stars: ✭ 21 (-44.74%)
Mutual labels:  rest-api
Laravel Realworld Example App
Exemplary real world backend API built with Laravel
Stars: ✭ 954 (+2410.53%)
Mutual labels:  rest-api
Aquameta
Web development platform built entirely in PostgreSQL
Stars: ✭ 987 (+2497.37%)
Mutual labels:  rest-api
Taliesin
Lightweight audio streaming server
Stars: ✭ 35 (-7.89%)
Mutual labels:  rest-api
Restful Lenny
A lenny API. Use this to bring Lenny face to your applications
Stars: ✭ 31 (-18.42%)
Mutual labels:  rest-api

ACF to REST API Recursive

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

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;
} );
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].