Title: JSON Data Feed
Author: jpcordial
Published: <strong>31 de mayo de 2013</strong>
Last modified: 23 de agosto de 2013

---

Buscar plugins

Este plugin **no se ha probado con las últimas 3 versiones mayores de WordPress**.
Puede que ya no tenga soporte ni lo mantenga nadie, o puede que tenga problemas 
de compatibilidad cuando se usa con las versiones más recientes de WordPress.

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

# JSON Data Feed

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

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

 * [Detalles](https://es-mx.wordpress.org/plugins/json-data-feed/#description)
 * [Opiniones](https://es-mx.wordpress.org/plugins/json-data-feed/#reviews)
 *  [Instalación](https://es-mx.wordpress.org/plugins/json-data-feed/#installation)
 * [Desarrollo](https://es-mx.wordpress.org/plugins/json-data-feed/#developers)

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

## Descripción

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

## Instalación

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

## Preguntas frecuentes

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

## Reseñas

No hay reseñas para este plugin.

## Colaboradores y desarrolladores

Este software es de código abierto. Las siguientes personas han contribuido a este
plugin.

Colaboradores

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

[Traduce “JSON Data Feed” a tu idioma.](https://translate.wordpress.org/projects/wp-plugins/json-data-feed)

### ¿Interesado en el desarrollo?

[Revisa el código](https://plugins.trac.wordpress.org/browser/json-data-feed/), 
echa un vistazo al [repositorio SVN](https://plugins.svn.wordpress.org/json-data-feed/)
o suscríbete al [registro de desarrollo](https://plugins.trac.wordpress.org/log/json-data-feed/)
por [RSS](https://plugins.trac.wordpress.org/log/json-data-feed/?limit=100&mode=stop_on_copy&format=rss).

## Registro de cambios

#### 0.1.1

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

## Meta

 *  Versión **0.5.3**
 *  Última actualización **hace 13 años**
 *  Instalaciones activas **10+**
 *  Versión de WordPress ** 3.5 o superior **
 *  Probado hasta **3.5.2**
 *  Idioma
 * [English (US)](https://wordpress.org/plugins/json-data-feed/)
 * Etiquetas:
 * [data feed](https://es-mx.wordpress.org/plugins/tags/data-feed/)[JSON](https://es-mx.wordpress.org/plugins/tags/json/)
 *  [Vista avanzada](https://es-mx.wordpress.org/plugins/json-data-feed/advanced/)

## Valoraciones

Aún no se han enviado valoraciones.

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

[Ver todas las valoraciones](https://wordpress.org/support/plugin/json-data-feed/reviews/)

## Colaboradores

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

## Soporte

¿Tienes algo que decir? ¿Necesitas ayuda?

 [Ver el foro de soporte](https://wordpress.org/support/plugin/json-data-feed/)