public
Description: WordPress plugin for syndicating feeds using JSON.
Homepage: http://frontendbook.com/wordpress/plugins/wp-json/
Clone URL: git://github.com/hising/wp-json.git
hising (author)
Fri Dec 19 06:17:33 -0800 2008
commit  fa7343fa5b0f1ab47d2b318bfcca2e2ad4907ab6
tree    93a1b300479d09f710791b25a50471c4f65cd326
parent  40fd72ad78a013b817d39800462a0d27ed36f557
name age message
file README Loading commit data...
file README.markdown
file json.php
file wp-json.php
README.markdown

WP-JSON

  • Contributors: hising
  • Donate link: http://frontendbook.com/
  • Tags: json, feed
  • Requires at least: 2.5
  • Tested up to: 2.7

Introduction

WP-JSON Lets you easily syndicate your feed as JSON enabling easy third party JavaScript integration.

Description

WP-JSON is a plugin that easily enables you start syndicating your blog entries using JSON. This enables third party integration with JavaScript solutions cross domain without use of proxy. Supports JSON-callback parameter. Inspired by this blog post but now bundled as a plugin and with support for PHP installations lower than 5.2.0

Installation

  1. Upload the wp-json folder to your plugin directory
  2. Activate the WP-JSON plugin in the plugin section of your blog admin interface
  3. Test that your blog responses correctly: 3.1 With mod_rewrite enabled http://yourblog.com/feed/json/?callback=method 3.2 With mod_rewrite disabled http://yourblog.com/?feed=json&callback=method

Frequently Asked Questions

How do I grab the JSON Feed?

You can either use http://yourblog.com/[path/]feed/json/?callback=method or if you do not have mod_rewrite enabled: http://yourblog.com/[path/]?feed=json&callback=method

Where can I find an example of this in use?

Try http://frontendbook.com/feed/json/?callback=method and you should see our feed syndicated in JSON.

Can you recommend any good JavaScript library for reading JSON?

Yes, I can, I prefer using jQuery