Title: REST API Enabler
Author: Mickey Kay
Published: <strong>9. Oktober 2015</strong>
Last modified: 4. Juli 2016

---

Plugins suchen

Dieses Plugin wurde **nicht mit den 3 neuesten Hauptversionen von WordPress getestet**.
Es wird möglicherweise nicht mehr gepflegt oder unterstützt und kann bei der Verwendung
mit neueren WordPress-Versionen zu Kompatibilitätsproblemen führen.

![](https://s.w.org/plugins/geopattern-icon/rest-api-enabler.svg)

# REST API Enabler

 Von [Mickey Kay](https://profiles.wordpress.org/mcguive7/)

[Herunterladen](https://downloads.wordpress.org/plugin/rest-api-enabler.1.1.0.zip)

 * [Details](https://de.wordpress.org/plugins/rest-api-enabler/#description)
 * [Rezensionen](https://de.wordpress.org/plugins/rest-api-enabler/#reviews)
 *  [Installation](https://de.wordpress.org/plugins/rest-api-enabler/#installation)
 * [Entwicklung](https://de.wordpress.org/plugins/rest-api-enabler/#developers)

 [Support](https://wordpress.org/support/plugin/rest-api-enabler/)

## Beschreibung

**Like this plugin? Please consider [leaving a 5-star review](https://wordpress.org/support/view/plugin-reviews/rest-api-enabler).**

By default, custom post types and custom fields are not accessible via the WordPress
REST API. REST API Enabler allows you to:

 1. Enable the WP REST API for custom post types and specify WP REST API custom endpoints.
 2. Choose which custom fields to include in WP REST API responses for posts, pages,
    and custom post types.

All enabled custom field data is included in the REST API response, nested under
the `rest_api_enabler` key, like so:

    ```
    [
      {
        "id": 179,
        "date": "2016-07-03T18:06:50",
        "title": {
          "rendered": "Test Job"
        },
        .
        .
        .
        "rest_api_enabler": {
          "custom_meta_1": "Value 1",
          "custom_meta_2": "Value 2",
          "custom_meta_3": [
            "Array value 1",
            "Array value 2"
          ]
        }
      }
    ]
    ```

Note: prior to verion 1.1.0, all meta keys were included as top-level keys in the
API response. Additionally, all values were returned as arrays, regardless of whether
the original value was actually an array. This functionality is now deprecated as
it risks key-name collisions. Please reference the `rest_api_enabler` top-level 
key instead.

#### Verwendung

 1. Activate the plugin, then go to **Settings → REST API Enabler** in the admin.
 2. Click the **Post Types** tab to enable/disable post types and customize their endpoints.
 3. Click the **Post Meta** tab to enable/disable post meta (custom fields).

**NOTE:** by default, the plugin does not display settings for protected post meta(
post meta that begins with an underscore and is intended for internal use only).
If you wish to include protected post meta in the plugin settings, you can use the`
rae_include_protected_meta` filter to do so. The following code can be placed in
your theme’s `functions.php` file, or in a custom plugin (on `init` priority 10 
or earlier):

    ```
    add_filter( 'rae_include_protected_meta', '__return_true' );
    ```

## Screenshots

 * [[
 * Enabling post types and customizing their endpoints.

## Installation

#### Manual Installation

 1. Upload the entire `/rest-api-enabler` directory to the `/wp-content/plugins/` directory.
 2. Activate REST API Enabler through the ‚Plugins‘ menu in WordPress.

## Rezensionen

![](https://secure.gravatar.com/avatar/b56f301f4060d564494fc7d704536bc85ee810378fd71c03108265c7c298455d?
s=60&d=retro&r=g)

### 󠀁[Great !!](https://wordpress.org/support/topic/great-4725/)󠁿

 [imaginocharme](https://profiles.wordpress.org/imaginocharme/) 3. September 2016

Great job, save me a lot of time .

![](https://secure.gravatar.com/avatar/2eff02d9622e2f8af5a5f80cefa2ce50735dff2728eb8443308ca6995b6f133d?
s=60&d=retro&r=g)

### 󠀁[Nice Job….exactly what i needed](https://wordpress.org/support/topic/nice-jobexactly-what-i-needed/)󠁿

 [TomLeonard](https://profiles.wordpress.org/tomleonard/) 3. September 2016

Nice Job….exactly what i needed . Very easy settings and Meta data page made it 
a breeze to add . Thanks Mickey!!

![](https://secure.gravatar.com/avatar/cca9f1a3fb857e74c0a2724a3b186b2d8513579974140561095f1881eab3b584?
s=60&d=retro&r=g)

### 󠀁[straight to the point](https://wordpress.org/support/topic/straight-to-the-point-6/)󠁿

 [muhaye](https://profiles.wordpress.org/muhaye/) 3. September 2016

Thank you, this is a very simple yet usefull plugin. saved me the time to create
one my self

 [ Alle 3 Rezensionen lesen ](https://wordpress.org/support/plugin/rest-api-enabler/reviews/)

## Mitwirkende und Entwickler

„REST API Enabler“ ist Open-Source-Software. Folgende Menschen haben an diesem Plugin
mitgewirkt:

Mitwirkende

 *   [ Mickey Kay ](https://profiles.wordpress.org/mcguive7/)

„REST API Enabler“ wurde in 1 Sprache übersetzt. Danke an [die Übersetzer](https://translate.wordpress.org/projects/wp-plugins/rest-api-enabler/contributors)
für ihre Mitwirkung.

[Übersetze „REST API Enabler“ in deine Sprache.](https://translate.wordpress.org/projects/wp-plugins/rest-api-enabler)

### Interessiert an der Entwicklung?

[Durchstöbere den Code](https://plugins.trac.wordpress.org/browser/rest-api-enabler/),
sieh dir das [SVN-Repository](https://plugins.svn.wordpress.org/rest-api-enabler/)
an oder abonniere das [Entwicklungsprotokoll](https://plugins.trac.wordpress.org/log/rest-api-enabler/)
per [RSS](https://plugins.trac.wordpress.org/log/rest-api-enabler/?limit=100&mode=stop_on_copy&format=rss).

## Änderungsprotokoll

#### 1.1.0

 * Add mapping of meta keys to be nested under the new top level rest_api_enabler
   response key. Note: top-level key support is still maintained, though now considered
   deprecated.
 * Add functionality to support singular and array values, to prevent issue in which
   ALL values were previously returned as arrays.

#### 1.0.2

 * Fix issue in which media uploads via the REST API don’t work.

#### 1.0.1

 * Fix typo preventing post meta enabling.
 * Fix post meta alphabetical sorting.

#### 1.0.0

 * First release

## Meta

 *  Version **1.1.0**
 *  Zuletzt aktualisiert **vor 10 Jahren**
 *  Aktive Installationen **200+**
 *  WordPress-Version ** 3.5 oder höher **
 *  Getestet bis **4.4.34**
 *  Sprachen
 * [Dutch](https://nl.wordpress.org/plugins/rest-api-enabler/) und [English (US)](https://wordpress.org/plugins/rest-api-enabler/).
 *  [Übersetze in deine Sprache](https://translate.wordpress.org/projects/wp-plugins/rest-api-enabler)
 * Schlagwörter
 * [api](https://de.wordpress.org/plugins/tags/api/)[custom](https://de.wordpress.org/plugins/tags/custom/)
   [post](https://de.wordpress.org/plugins/tags/post/)[rest](https://de.wordpress.org/plugins/tags/rest/)
   [type](https://de.wordpress.org/plugins/tags/type/)
 *  [Erweiterte Ansicht](https://de.wordpress.org/plugins/rest-api-enabler/advanced/)

## Bewertungen

 5 von 5 Sternen.

 *  [  3 5-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/rest-api-enabler/reviews/?filter=5)
 *  [  0 4-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/rest-api-enabler/reviews/?filter=4)
 *  [  0 3-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/rest-api-enabler/reviews/?filter=3)
 *  [  0 2-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/rest-api-enabler/reviews/?filter=2)
 *  [  0 1-Sterne-Rezensionen     ](https://wordpress.org/support/plugin/rest-api-enabler/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/rest-api-enabler/reviews/#new-post)

[Alle Rezensionen anzeigen](https://wordpress.org/support/plugin/rest-api-enabler/reviews/)

## Mitwirkende

 *   [ Mickey Kay ](https://profiles.wordpress.org/mcguive7/)

## Support

Möchtest du etwas mitteilen? Brauchst du Unterstützung?

 [Support-Forum anzeigen](https://wordpress.org/support/plugin/rest-api-enabler/)

## Spenden

Möchtest du die Weiterentwicklung dieses Plugins unterstützen?

 [ Für dieses Plugin spenden ](http://wordpress.org/plugins/rest-api-enabler)