2017 © Pedro PelΓ‘ez
 

wordpress-plugin acf-to-rest-api

image

airesvsg/acf-to-rest-api

  • Sunday, April 29, 2018
  • by airesvsg
  • Repository
  • 32 Watchers
  • 633 Stars
  • 7,286 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 43 Forks
  • 38 Open issues
  • 7 Versions
  • 16 % Grown

The README.md

ACF to REST API

Exposes Advanced Custom Fields Endpoints in the WordPress REST API, (*1)

https://wordpress.org/plugins/acf-to-rest-api/, (*2)

Installation

  1. Copy the acf-to-rest-api folder into your wp-content/plugins folder
  2. Activate the ACF to REST API plugin via the plugin admin page

Endpoints

Endpoint READABLE EDITABLE
/wp-json/acf/v3/posts πŸ†• βœ… ❌
/wp-json/acf/v3/posts/{id} βœ… βœ…
/wp-json/acf/v3/posts/{id}/{field-name} βœ… βœ…
/wp-json/acf/v3/pages πŸ†• βœ… ❌
/wp-json/acf/v3/pages/{id} βœ… βœ…
/wp-json/acf/v3/pages/{id}/{field-name} βœ… βœ…
/wp-json/acf/v3/users πŸ†• βœ… ❌
/wp-json/acf/v3/users/{id} βœ… βœ…
/wp-json/acf/v3/users/{id}/{field-name} βœ… βœ…
/wp-json/acf/v3/{taxonomy} πŸ†• βœ… ❌
/wp-json/acf/v3/{taxonomy}/{id} πŸ†• βœ… βœ…
/wp-json/acf/v3/{taxonomy}/{id}/{field-name} πŸ†• βœ… βœ…
/wp-json/acf/v3/comments πŸ†• βœ… ❌
/wp-json/acf/v3/comments/{id} βœ… βœ…
/wp-json/acf/v3/comments/{id}/{field-name} βœ… βœ…
/wp-json/acf/v3/media πŸ†• βœ… ❌
/wp-json/acf/v3/media/{id} βœ… βœ…
/wp-json/acf/v3/media/{id}/{field-name} βœ… βœ…
/wp-json/acf/v3/{post-type} πŸ†• βœ… ❌
/wp-json/acf/v3/{post-type}/{id} πŸ†• βœ… βœ…
/wp-json/acf/v3/{post-type}/{id}/{field-name} πŸ†• βœ… βœ…
/wp-json/acf/v3/options/{id} πŸ†• βœ… βœ…
/wp-json/acf/v3/options/{id}/{field-name} πŸ†• βœ… βœ…

Filters

Filter Argument(s)
acf/rest_api/id mixed ( string, integer, boolean ) $id
string $type πŸ†•
string $controller πŸ†•
acf/rest_api/key string $key
WP_REST_Request $request
string $type
acf/rest_api/item_permissions/get boolean $permission
WP_REST_Request $request
string $type
acf/rest_api/item_permissions/update boolean $permission
WP_REST_Request $request
string $type
acf/rest_api/{type}/prepare_item mixed ( array, boolean ) $item
WP_REST_Request $request
acf/rest_api/{type}/get_fields mixed ( array, WP_REST_Request ) $data
mixed ( WP_REST_Request, NULL ) $request
acf/rest_api/field_settings/show_in_rest πŸ†• boolean $show
acf/rest_api/field_settings/edit_in_rest πŸ†• boolean $edit

Basic example of how to use the filters, in this case I will set a new permission to get the fields, (*3)

add_filter( 'acf/rest_api/item_permissions/get', function( $permission ) {
  return current_user_can( 'edit_posts' );
} );

Deprecated filters

Filter Argument(s)
acf/rest_api/type string $type
acf/rest_api/types array $types
acf/rest_api/default_rest_base boolean $default
string $type

Request API version

See below how to select the Request API Version., (*4)

  1. Open the plugins page;
  2. Click the settings link under the pluing name ( ACF to REST API );
  3. Select your version in the ACF to REST API session;
  4. Click in the button Save changes.

The other alternative is to define the constant ACF_TO_REST_API_REQUEST_VERSION in your wp-config.php, (*5)

define( 'ACF_TO_REST_API_REQUEST_VERSION', 2 );

Field Settings

In this version is possible to configure the field options via admin., (*6)

The options are enabled using the filters below, by default theses options are disabled., (*7)

// Enable the option show in rest
add_filter( 'acf/rest_api/field_settings/show_in_rest', '__return_true' );

// Enable the option edit in rest
add_filter( 'acf/rest_api/field_settings/edit_in_rest', '__return_true' );

Editing the fields

The fields should be sent into the key fields., (*8)

Action: http://localhost/wp-json/acf/v3/posts/1, (*9)

<form action="http://localhost/wp-json/acf/v3/posts/1" method="POST">
  <?php 
    // https://developer.wordpress.org/rest-api/using-the-rest-api/authentication/
    wp_nonce_field( 'wp_rest' ); 
  ?>
  <label>Site: <input type="text" name="fields[site]"></label>
  <button type="submit">Save</button>
</form>

Action: http://localhost/wp-json/wp/v2/posts/1, (*10)

<form action="http://localhost/wp-json/wp/v2/posts/1" method="POST">
  <?php 
    // https://developer.wordpress.org/rest-api/using-the-rest-api/authentication/
    wp_nonce_field( 'wp_rest' ); 
  ?>
  <label>Title: <input type="text" name="title"></label>
  <h3>ACF</h3>
  <label>Site: <input type="text" name="fields[site]"></label>
  <button type="submit">Save</button>
</form>

Use the filter acf/rest_api/key to change the key fields., (*11)

add_filter( 'acf/rest_api/key', function( $key, $request, $type ) {
  return 'acf_fields';
}, 10, 3 );

Now, the fields should be sent into the key acf_fields, (*12)

<form action="http://localhost/wp-json/acf/v3/posts/1" method="POST">
  <?php 
    // https://developer.wordpress.org/rest-api/using-the-rest-api/authentication/
    wp_nonce_field( 'wp_rest' ); 
  ?>
  <label>Site: <input type="text" name="acf_fields[site]"></label>
  <button type="submit">Save</button>
</form>

Examples

Sample theme to edit the ACF Fields., (*13)

https://github.com/airesvsg/acf-to-rest-api-example, (*14)

To-do list πŸ†•, (*15)

https://github.com/airesvsg/to-do-list-acf-to-rest-api, (*16)

Get ACF Fields RecursivelyπŸ†•

https://github.com/airesvsg/acf-to-rest-api-recursive, (*17)

More details:, (*18)

  • Issues, (*19)

    • https://github.com/airesvsg/acf-to-rest-api/issues/109
    • https://github.com/airesvsg/acf-to-rest-api/issues/223
    • https://github.com/airesvsg/acf-to-rest-api/issues/9
  • Pull Request, (*20)

    • https://github.com/airesvsg/acf-to-rest-api/pull/95

Cache

Enable caching for WordPress REST API and increase speed of your application., (*21)

https://github.com/airesvsg/wp-rest-api-cache, (*22)

The Versions

29/04 2018

2.2.0

2.2.0.0

  Sources   Download

29/04 2018

2.2.1

2.2.1.0

  Sources   Download

29/04 2018

3.0.0-beta

3.0.0.0-beta

  Sources   Download

03/04 2018

dev-master

9999999-dev https://github.com/airesvsg/acf-to-rest-api

Exposes Advanced Custom Fields Endpoints in the WordPress REST API

  Sources   Download

GPLv2.0+

The Requires

 

wordpress wp json rest-api fields acf wp-api wordpres-plugin

19/10 2017

3.1.0

3.1.0.0 https://github.com/airesvsg/acf-to-rest-api

Exposes Advanced Custom Fields Endpoints in the WordPress REST API

  Sources   Download

GPLv2.0+

The Requires

 

wordpress wp json rest-api fields acf wp-api wordpres-plugin

05/10 2017

3.0.2

3.0.2.0 https://github.com/airesvsg/acf-to-rest-api

Exposes Advanced Custom Fields Endpoints in the WordPress REST API

  Sources   Download

GPLv2.0+

The Requires

 

wordpress wp json rest-api fields acf wp-api wordpres-plugin

04/04 2017

3.0.1-beta

3.0.1.0-beta https://github.com/airesvsg/acf-to-rest-api

Exposes Advanced Custom Fields Endpoints in the WordPress REST API

  Sources   Download

GPLv2.0+

The Requires

 

wordpress wp json rest-api fields acf wp-api wordpres-plugin