Title: JSON Data Feed
Author: jpcordial
Published: <strong>મે 31, 2013</strong>
Last modified: ઓગસ્ટ 23, 2013

---

પ્લગીન શોધો

આ પલ્ગઇન ** 2 વર્ષથી વધુમાં અપડેટ કરવામાં આવ્યો નથી **. એ કદાચ જાળવવામાં અથવા સપોર્ટેડ
નહી હોય. વર્ડપ્રેસ ના વધુ તાજેતરનાં સંસ્કરણો સાથે ઉપયોગમાં લેવાય તો સુસંગતતા મુદ્દાઓ
હોઈ શકે છે.

![](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://gu.wordpress.org/plugins/json-data-feed/#description)
 * [સમીક્ષાઓ](https://gu.wordpress.org/plugins/json-data-feed/#reviews)
 *  [સ્થાપન](https://gu.wordpress.org/plugins/json-data-feed/#installation)
 * [ડેવલપમેન્ટ](https://gu.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);
    }
    ```

## સમીક્ષાઓ

આ પ્લગઇન માટે કોઈ સમીક્ષાઓ નથી.

## ફાળો આપનાર & ડેવલપર્સ

આ ઓપન સોર્સ સોફ્ટવેર છે. નીચેના લોકો એ આ પ્લગિન માટે ફાળો આપ્યો છે.

ફાળો આપનારા

 *   [ 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/), જોવો
[અસ્વીએન રેપોઝિટરીમાંથી](https://plugins.svn.wordpress.org/json-data-feed/),અથવા
સબ્સ્ક્રાઇબ કરો[ડેવલપમેન્ટ](https://plugins.trac.wordpress.org/log/json-data-feed/)
દ્વારા[આરઅસઅસ](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+**
 *  વર્ડપ્રેસ વર્ઝન ** 3.5 અથવા ઉચ્ચતર **
 *  **3.5.2** સુધી પરીક્ષણ કર્યું
 *  ભાષા
 * [English (US)](https://wordpress.org/plugins/json-data-feed/)
 * ટૅગ્સ:
 * [data feed](https://gu.wordpress.org/plugins/tags/data-feed/)[JSON](https://gu.wordpress.org/plugins/tags/json/)
 *  [વિગતવાર દૃશ્ય](https://gu.wordpress.org/plugins/json-data-feed/advanced/)

## પૉઇન્ટ્સ

હજુ સુધી કોઈ સમીક્ષા સબમિટ કરવામાં આવી નથી.

[તમારા અભિપ્રાયો](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/)