Title: JSON Data Feed
Author: jpcordial
Published: <strong>2013年5月31日</strong>
Last modified: 2013年8月23日

---

プラグインを検索

このプラグインは **WordPress の最新3回のメジャーリリースに対してテストされていま
せん**。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress
で使用した場合は互換性の問題が発生する可能性があります。

![](https://s.w.org/plugins/geopattern-icon/json-data-feed.svg)

# JSON Data Feed

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

[ダウンロード](https://downloads.wordpress.org/plugin/json-data-feed.0.5.3.zip)

 * [詳細](https://ja.wordpress.org/plugins/json-data-feed/#description)
 * [レビュー](https://ja.wordpress.org/plugins/json-data-feed/#reviews)
 *  [インストール](https://ja.wordpress.org/plugins/json-data-feed/#installation)
 * [開発](https://ja.wordpress.org/plugins/json-data-feed/#developers)

 [サポート](https://wordpress.org/support/plugin/json-data-feed/)

## 説明

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

## インストール

 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);
    }
    ```

## 評価

このプラグインにはレビューがありません。

## 貢献者と開発者

JSON Data Feed はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献
しています。

貢献者

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

[“JSON Data Feed” をあなたの言語に翻訳しましょう。](https://translate.wordpress.org/projects/wp-plugins/json-data-feed)

### 開発に興味がありますか ?

[コードを閲覧](https://plugins.trac.wordpress.org/browser/json-data-feed/)するか、
[SVN リポジトリ](https://plugins.svn.wordpress.org/json-data-feed/)をチェックする
か、[開発ログ](https://plugins.trac.wordpress.org/log/json-data-feed/)を [RSS](https://plugins.trac.wordpress.org/log/json-data-feed/?limit=100&mode=stop_on_copy&format=rss)
で購読してみてください。

## 変更履歴

#### 0.1.1

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

## メタ

 *  バージョン **0.5.3**
 *  最終更新日 **13年前**
 *  有効インストール数 **10+**
 *  WordPress バージョン ** 3.5またはそれ以降 **
 *  検証済み最新バージョン: **3.5.2**
 *  言語
 * [English (US)](https://wordpress.org/plugins/json-data-feed/)
 * タグ
 * [data feed](https://ja.wordpress.org/plugins/tags/data-feed/)[JSON](https://ja.wordpress.org/plugins/tags/json/)
 *  [詳細を表示](https://ja.wordpress.org/plugins/json-data-feed/advanced/)

## 評価

レビューはまだ送信されていません。

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

[すべてのレビューを見る](https://wordpress.org/support/plugin/json-data-feed/reviews/)

## 貢献者

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

## サポート

意見や質問がありますか ?

 [サポートフォーラムを表示](https://wordpress.org/support/plugin/json-data-feed/)