Plugin info

Total downloads: 1,859
Active installs: 10
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 10/22/2020 (1895 days ago)
Added to WordPress: 11/4/2016 (9 years old)
Minimum WordPress version: 5.0
Tested up to WordPress version: 5.5.17
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 1895 days ago

20/100

Is Article JSON-LD abandoned?

Possibly abandoned (last update 1895 days ago).

Compatibility

Requires WordPress: 5.0
Tested up to: 5.5.17
Requires PHP: f

Similar & Alternatives

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

WPSSO Strip Schema Microdata
Rating 4.9/5 (14 reviews)Active installs 300
WP Schema & Structured Data
Rating 0.0/5 (0 reviews)Active installs 10
Schema – All In One Schema Rich Snippets
Rating 4.0/5 (163 reviews)Active installs 30,000
WP SEO Structured Data Schema
Rating 4.0/5 (68 reviews)Active installs 30,000
Rich Contact Widget
Rating 4.6/5 (7 reviews)Active installs 7,000
Protect schema.org markup in HTML editor
Rating 5.0/5 (5 reviews)Active installs 900

Description

Article JSON-LD is an extendable and straightforward solution to enhance your site SEO by adding Schema.org microdata as a JSON-LD script on your site posts.

It will automatically insert the JSON-LD script in your site tag by using the standard information provided by WordPress, such as the title, description, featured image, publish date, author, categories..etc.

You can support your custom post types or modify the data easily by using the plugin’s hooks.

Custom-Post-Types Support

By default, the plugin supports the post post-type. Add support for other custom-post-types using a code snippet as the example below:

add_action('init', 'add_article_json_ld_post_type_support', 15);

/**
 * @return void
 */
function add_article_json_ld_post_type_support()
{
    add_post_type_support('custom-post-type', 'article-json-ld');
}

You can use Code Snippets plugin to add the code snippets to your site.

An active demo is available on Arageek articles.

Plugin’s Hooks

  • ArticleJsonLd\post_json_ld_data A filter for a post JSON-LD data.
  • ArticleJsonLd\post_author_json_ld_data A filter for a post author JSON-LD data.
  • ArticleJsonLd\post_publisher_json_ld_data A filter for a post publisher JSON-LD data.

Contributing

Developers can contribute to the source code on the Github Repository.

Installation

  1. Upload and install the plugin
  2. Use the plugin WP filters to customize the data.

Frequently Asked Questions

No FAQ available

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

0.3

  • Add compatibility for latest version of WordPress SEO by Yoast.

0.2.1

  • Add the ‘description’ property and use get_the_excerpt() to get the value.
  • Use the ISO 8601 format for ‘datePublished’ and ‘dateModified’ properties.
  • Use get_the_title() to get the `headline’ property value.
  • Some fixes and minor enhancements.

0.2

  • The Initial version.