Plugin info

Total downloads: 2,187
Active installs: 10
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 8/23/2013 (4560 days ago)
Added to WordPress: 5/31/2013 (12 years old)
Minimum WordPress version: 3.5
Tested up to WordPress version: 3.5.2
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 4560 days ago

20/100

Is JSON Data Feed abandoned?

Possibly abandoned (last update 4560 days ago).

Compatibility

Requires WordPress: 3.5
Tested up to: 3.5.2
Requires PHP: f

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Datafeedr API
Rating 4.0/5 (13 reviews)Active installs 6,000
DataFeedWatch Connector for WooCommerce
Rating 0.0/5 (0 reviews)Active installs 500
WP Data Sync
Rating 3.8/5 (5 reviews)Active installs 300
XML Data Feed for Shopbot CSE
Rating 0.0/5 (0 reviews)Active installs 0

Description

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!

Frequently Asked Questions

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

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

0.1.1

Added get_json_bloginfo filter to add or change the blog info in the data feed.