Markup (JSON-LD) structured in schema.org - Version 2.0.1

Version Description

(2015/11/25) =

  • Fixed : Notice error fixed.
Download this release

Release Info

Developer miiitaka
Plugin Icon 128x128 Markup (JSON-LD) structured in schema.org
Version 2.0.1
Comparing to
See all releases

Code changes from version 2.0.0 to 2.0.1

includes/wp-structuring-display.php CHANGED
@@ -3,7 +3,7 @@
3
  * Schema.org Display
4
  *
5
  * @author Kazuya Takami
6
- * @version 1.2.1
7
  * @since 1.0.0
8
  */
9
  class Structuring_Markup_Display {
@@ -44,7 +44,7 @@ class Structuring_Markup_Display {
44
  * Setting JSON-LD Template
45
  *
46
  * @since 1.0.0
47
- * @version 2.0.0
48
  * @param Structuring_Markup_Admin_Db $db
49
  * @param string $output
50
  */
@@ -53,7 +53,7 @@ class Structuring_Markup_Display {
53
 
54
  if ( isset( $results ) ) {
55
  foreach ( $results as $row ) {
56
- if ( isset( $row->type ) && $row->activate === 'on' ) {
57
  switch ( $row->type ) {
58
  case 'article':
59
  $this->set_schema_article();
3
  * Schema.org Display
4
  *
5
  * @author Kazuya Takami
6
+ * @version 2.0.1
7
  * @since 1.0.0
8
  */
9
  class Structuring_Markup_Display {
44
  * Setting JSON-LD Template
45
  *
46
  * @since 1.0.0
47
+ * @version 2.0.1
48
  * @param Structuring_Markup_Admin_Db $db
49
  * @param string $output
50
  */
53
 
54
  if ( isset( $results ) ) {
55
  foreach ( $results as $row ) {
56
+ if ( isset( $row->type ) && isset( $row->activate ) && $row->activate === 'on' ) {
57
  switch ( $row->type ) {
58
  case 'article':
59
  $this->set_schema_article();
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: miiitaka
3
  Tags: schema, schema.org, json, json-ld, seo, post, posts, google
4
  Requires at least: 4.3.1
5
  Tested up to: 4.3.1
6
- Stable tag: 2.0.0
7
 
8
  It is plug in to implement structured markup (JSON-LD syntax) by schema.org definition on an post page, fixed page and etc.
9
 
@@ -24,6 +24,14 @@ Base knowledge is "https://schema.org/" and "https://developers.google.com/struc
24
  * Organization: https://schema.org/Organization
25
  * Website: https://schema.org/WebSite
26
 
 
 
 
 
 
 
 
 
27
  == Installation ==
28
 
29
  * A plug-in installation screen is displayed in the WordPress admin panel.
@@ -31,15 +39,11 @@ Base knowledge is "https://schema.org/" and "https://developers.google.com/struc
31
  * The plug-in is activated.
32
  * Open 'Schema.org Setting' menu.
33
 
34
- **Breadcrumb**
35
-
36
- You can display the breadcrumbs in the short code. Breadcrumb definition is available even if not active.
37
-
38
- ショートコードでパンくずリストを表示することができます。Breadcrumb定義がアクティブでなくても使用可能です。
39
 
40
- `[wp-structuring-markup-breadcrumb]`
41
 
42
- == Changelog ==
43
 
44
  = 2.0.0 (2015/11/23) =
45
 
3
  Tags: schema, schema.org, json, json-ld, seo, post, posts, google
4
  Requires at least: 4.3.1
5
  Tested up to: 4.3.1
6
+ Stable tag: 2.0.1
7
 
8
  It is plug in to implement structured markup (JSON-LD syntax) by schema.org definition on an post page, fixed page and etc.
9
 
24
  * Organization: https://schema.org/Organization
25
  * Website: https://schema.org/WebSite
26
 
27
+ = Breadcrumb =
28
+
29
+ You can display the breadcrumbs in the short code. Breadcrumb definition is available even if not active.
30
+
31
+ ショートコードでパンくずリストを表示することができます。Breadcrumb定義がアクティブでなくても使用可能です。
32
+
33
+ `[wp-structuring-markup-breadcrumb]`
34
+
35
  == Installation ==
36
 
37
  * A plug-in installation screen is displayed in the WordPress admin panel.
39
  * The plug-in is activated.
40
  * Open 'Schema.org Setting' menu.
41
 
42
+ == Changelog ==
 
 
 
 
43
 
44
+ = 2.0.1 (2015/11/25) =
45
 
46
+ * Fixed : Notice error fixed.
47
 
48
  = 2.0.0 (2015/11/23) =
49
 
wp-structuring-markup.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Markup (JSON-LD) structured in schema.org
4
  Plugin URI: https://wordpress.org/plugins/wp-structuring-markup/
5
  Description: It is plug in to implement structured markup (JSON-LD syntax) by schema.org definition on an article or the fixed page.
6
- Version: 2.0.0
7
  Author: Kazuya Takami
8
  Author URI: http://programp.com/
9
  License: GPLv2 or later
3
  Plugin Name: Markup (JSON-LD) structured in schema.org
4
  Plugin URI: https://wordpress.org/plugins/wp-structuring-markup/
5
  Description: It is plug in to implement structured markup (JSON-LD syntax) by schema.org definition on an article or the fixed page.
6
+ Version: 2.0.1
7
  Author: Kazuya Takami
8
  Author URI: http://programp.com/
9
  License: GPLv2 or later