Title: JSON Data Feed
Author: jpcordial
Published: <strong>31. Mai 2013</strong>
Last modified: 23. August 2013

---

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/json-data-feed.svg)

# JSON Data Feed

 Von [jpcordial](https://profiles.wordpress.org/jpcordial/)

[Herunterladen](https://downloads.wordpress.org/plugin/json-data-feed.0.5.3.zip)

 * [Details](https://de.wordpress.org/plugins/json-data-feed/#description)
 * [Rezensionen](https://de.wordpress.org/plugins/json-data-feed/#reviews)
 *  [Installation](https://de.wordpress.org/plugins/json-data-feed/#installation)
 * [Entwicklung](https://de.wordpress.org/plugins/json-data-feed/#developers)

 [Support](https://wordpress.org/support/plugin/json-data-feed/)

## Beschreibung

JSON Data Feed can be used to supplement a WordPress blog’s normal XML feeds with
a JSON feed. Install it, activate it, and you’re done.

The JSON feed can be accessed by going to {a url on a WordPress site}/json

## Installation

 1. Unzip the plugin folder.
 2. Upload the unpacked folder to your plugins directory.
 3. Activate the plugin.
 4. Enjoy!

## FAQ

  Can I add my own data to a post’s JSON feed?

Yes, you can!

In your theme’s _functions.php_ file, you can use a filter to add whatever data 
you need.

    ```
    add_filter("get_json_meta", "my_metadata_function");
    function my_metadata_function($metadata){
        $myData = ""; //Add your data here.
        array_push($metadata, $myData);
    }
    ```

Every post type also has it’s own meta data filter. If you need to add metadata 
only to a single post type,

    ```
    add_filter("get_json_meta_{post_type}", "my_metadata_function");
    function my_metadata_function($metadata){
        $myData = ""; //Add your data here.
        array_push($metadata, $myData);
    }
    ```

Any data you push onto the array will be available in _{post}.meta_ section of the
JSON feed.

  Can I get full category and tag objects in the feed?

Sure can! You can change that in the plug in settings.

Settings can be accessed from Settings->JSON Data Feed.

  Can I modify the blog info in the data feed?

Why yes, you can! Once again, through the magic of filters, anything is possible!

    ```
    add_filter("get_json_bloginfo", "my_bloginfo_function");
    function my_bloginfo_function($bloginfo){
        $myData = ""; //Add your data here.
        array_push($bloginfo, $myData);
    }
    ```

## Rezensionen

Zu diesem Plugin liegen noch keine Rezensionen vor.

## Mitwirkende und Entwickler

„JSON Data Feed“ ist Open-Source-Software. Folgende Menschen haben an diesem Plugin
mitgewirkt:

Mitwirkende

 *   [ jpcordial ](https://profiles.wordpress.org/jpcordial/)

[Übersetze „JSON Data Feed“ in deine Sprache.](https://translate.wordpress.org/projects/wp-plugins/json-data-feed)

### Interessiert an der Entwicklung?

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

## Änderungsprotokoll

#### 0.1.1

Added _get\_json\_bloginfo_ filter to add or change the blog info in the data feed.

## Meta

 *  Version **0.5.3**
 *  Zuletzt aktualisiert **vor 13 Jahren**
 *  Aktive Installationen **10+**
 *  WordPress-Version ** 3.5 oder höher **
 *  Getestet bis **3.5.2**
 *  Sprache
 * [English (US)](https://wordpress.org/plugins/json-data-feed/)
 * Schlagwörter
 * [data feed](https://de.wordpress.org/plugins/tags/data-feed/)[JSON](https://de.wordpress.org/plugins/tags/json/)
 *  [Erweiterte Ansicht](https://de.wordpress.org/plugins/json-data-feed/advanced/)

## Bewertungen

Es wurden noch keine Rezensionen eingereicht.

[Deine Rezension](https://wordpress.org/support/plugin/json-data-feed/reviews/#new-post)

[Alle Rezensionen anzeigen](https://wordpress.org/support/plugin/json-data-feed/reviews/)

## Mitwirkende

 *   [ jpcordial ](https://profiles.wordpress.org/jpcordial/)

## Support

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

 [Support-Forum anzeigen](https://wordpress.org/support/plugin/json-data-feed/)