Adds feeds in JSON Feed format.
Adds a JSON Feed to your WordPress site by adding /feed/json
to any URL.
The JSON Feed format is a pragmatic syndication format, like RSS and Atom, but with one big difference: it’s JSON instead of XML. Learn more at jsonfeed.org.
/wp-content/plugins/jsonfeed
directory, or install the plugin through the WordPress plugins screen directly.JSON Feed, a format similar to RSS and Atom but in JSON. JSON has become the developers’ choice for APIs, and that developers will often go out of their way to avoid XML.
JSON is simpler to read and write, and it’s less prone to bugs.
Yes you can! There is a filter, json_feed_item
, that allows you to modify the items in the feed just before they’re inserted into the feed itself. For example, if you want to add a link to a post author’s archive page to the respective item in the feed, you can use the following code:
`
function wp_custom_json_feed_fields( $feed_item, $post ){
$feed_item[‘author’][‘archive_link’] = get_author_posts_url( $post->post_author );
return $feed_item;
}
add_filter( ‘json_feed_item’, ‘wp_custom_json_feed_fields’, 10, 2);
`
This is a syndication format, which means it only represents your posts and comments as feed elements. This is read only, similar to RSS or Atom. It is not an API.
jsonfeed_comments_feed_enable
, which if set to false will disable the comments feed header.