Title: JSON Data Feed
Author: jpcordial
Published: <strong>31 ਮਈ 2013</strong>
Last modified: 23 ਅਗਸਤ 2013

---

ਪਲੱਗਇਨਾਂ ਖੋਜੋ

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of 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://pan.wordpress.org/plugins/json-data-feed/#description)
 * [ਸਮੀਖਿਆਵਾਂ](https://pan.wordpress.org/plugins/json-data-feed/#reviews)
 *  [ਸਥਾਪਤੀਕਰਨ](https://pan.wordpress.org/plugins/json-data-feed/#installation)
 * [ਵਿਕਾਸ](https://pan.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!

## ਅਕਸਰ ਪੁੱਛੇ ਜਾਂਦੇ ਸਵਾਲ

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

## ਸਮੀਖਿਆਵਾਂ

There are no reviews for this plugin.

## ਯੋਗਦਾਨੀ ਤੇ ਵਿਕਾਸਕਾਰ

“JSON Data Feed” is open source software. The following people have contributed 
to this plugin.

ਯੋਗਦਾਨੀ

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

[“JSON Data Feed” ਦਾ ਆਪਣੀ ਭਾਸ਼ਾ ਵਿੱਚ ਅਨੁਵਾਦ ਕਰੋ।](https://translate.wordpress.org/projects/wp-plugins/json-data-feed)

### ਵਿਕਾਸ ਕਾਰਜ ਵਿੱਚ ਰੁਚੀ ਰੱਖਦੇ ਹੋ?

[Browse the code](https://plugins.trac.wordpress.org/browser/json-data-feed/), check
out the [SVN repository](https://plugins.svn.wordpress.org/json-data-feed/), or 
subscribe to the [development log](https://plugins.trac.wordpress.org/log/json-data-feed/)
by [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.

## ਮੈਟਾ

 *  Version **0.5.3**
 *  Last updated **13 ਸਾਲ ਪਹਿਲਾਂ**
 *  Active installations **10+**
 *  WordPress version ** 3.5 ਜਾਂ ਇਸ ਤੋਂ ਉੱਚਾ **
 *  Tested up to **3.5.2**
 *  Language
 * [English (US)](https://wordpress.org/plugins/json-data-feed/)
 * Tags
 * [data feed](https://pan.wordpress.org/plugins/tags/data-feed/)[JSON](https://pan.wordpress.org/plugins/tags/json/)
 *  [Advanced View](https://pan.wordpress.org/plugins/json-data-feed/advanced/)

## ਦਰਜਾਬੰਦੀ

No reviews have been submitted yet.

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

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

## ਯੋਗਦਾਨੀ

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

## ਸਹਿਯੋਗ

ਕੁਝ ਕਹਿਣਾ ਹੈ? ਮਦਦ ਚਾਹੀਦੀ ਹੈ?

 [ਸਹਿਯੋਗ ਫੋਰਮ ਦੇਖੋ](https://wordpress.org/support/plugin/json-data-feed/)