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

Version Description

(2016-01-10) =

  • Fixed : Fixed a bug that Organization type of display error of contactType comes out.
  • Fixed : Fixed a bug that can not save LocalBusiness type of latitude and longitude.
Download this release

Release Info

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

Code changes from version 2.3.1 to 2.3.2

includes/wp-structuring-admin-type-local-business.php CHANGED
@@ -251,7 +251,7 @@ class Structuring_Markup_Type_LocalBusiness {
251
  }
252
  $html .= $this->set_form_checkbox( 'geo_active', 'Setting', $option['geo_active'], 'Active' );
253
  $html .= $this->set_form_text( 'latitude', 'Latitude', $option['latitude'], false );
254
- $html .= $this->set_form_text( 'longitude', 'Longitude', $option['latitude'], false );
255
  $html .= '</table>';
256
  echo $html;
257
 
251
  }
252
  $html .= $this->set_form_checkbox( 'geo_active', 'Setting', $option['geo_active'], 'Active' );
253
  $html .= $this->set_form_text( 'latitude', 'Latitude', $option['latitude'], false );
254
+ $html .= $this->set_form_text( 'longitude', 'Longitude', $option['longitude'], false );
255
  $html .= '</table>';
256
  echo $html;
257
 
includes/wp-structuring-admin-type-organization.php CHANGED
@@ -3,7 +3,7 @@
3
  * Schema.org Type Organization
4
  *
5
  * @author Kazuya Takami
6
- * @version 2.3.0
7
  * @since 1.0.0
8
  * @see wp-structuring-admin-db.php
9
  * @link https://schema.org/Organization
@@ -18,21 +18,21 @@ class Structuring_Markup_Type_Organization {
18
  * Variable definition.
19
  *
20
  * @since 1.0.0
21
- * @version 2.2.0
22
  */
23
  /** contactType defined. */
24
  private $contact_type_array = array(
25
- array("type" => "customer_service", "display" => "customer service"),
26
- array("type" => "technical_support", "display" => "technical support"),
27
- array("type" => "billing_support", "display" => "billing support"),
28
- array("type" => "bill_payment", "display" => "bill payment"),
29
  array("type" => "sales", "display" => "sales"),
30
  array("type" => "reservations", "display" => "reservations"),
31
- array("type" => "credit_card_support", "display" => "credit card support"),
32
  array("type" => "emergency", "display" => "emergency"),
33
- array("type" => "baggage_tracking", "display" => "baggage tracking"),
34
- array("type" => "roadside_assistance", "display" => "roadside assistance"),
35
- array("type" => "package_tracking", "display" => "package tracking")
36
  );
37
  /** Social Profile */
38
  private $social_array = array(
3
  * Schema.org Type Organization
4
  *
5
  * @author Kazuya Takami
6
+ * @version 2.3.2
7
  * @since 1.0.0
8
  * @see wp-structuring-admin-db.php
9
  * @link https://schema.org/Organization
18
  * Variable definition.
19
  *
20
  * @since 1.0.0
21
+ * @version 2.3.2
22
  */
23
  /** contactType defined. */
24
  private $contact_type_array = array(
25
+ array("type" => "customer service", "display" => "customer service"),
26
+ array("type" => "technical support", "display" => "technical support"),
27
+ array("type" => "billing support", "display" => "billing support"),
28
+ array("type" => "bill payment", "display" => "bill payment"),
29
  array("type" => "sales", "display" => "sales"),
30
  array("type" => "reservations", "display" => "reservations"),
31
+ array("type" => "credit card_support", "display" => "credit card support"),
32
  array("type" => "emergency", "display" => "emergency"),
33
+ array("type" => "baggage tracking", "display" => "baggage tracking"),
34
+ array("type" => "roadside assistance", "display" => "roadside assistance"),
35
+ array("type" => "package tracking", "display" => "package tracking")
36
  );
37
  /** Social Profile */
38
  private $social_array = array(
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: miiitaka
3
  Tags: schema, schema.org, json, json-ld, seo, post, posts, google, shortcode, breadcrumb
4
  Requires at least: 4.3.1
5
  Tested up to: 4.4.1
6
- Stable tag: 2.3.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
 
@@ -51,6 +51,11 @@ if ( shortcode_exists( 'wp-structuring-markup-breadcrumb' ) ) {
51
 
52
  == Changelog ==
53
 
 
 
 
 
 
54
  = 2.3.1 (2016-01-07) =
55
 
56
  * Check : WordPress version 4.4.1 operation check.
3
  Tags: schema, schema.org, json, json-ld, seo, post, posts, google, shortcode, breadcrumb
4
  Requires at least: 4.3.1
5
  Tested up to: 4.4.1
6
+ Stable tag: 2.3.2
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
 
51
 
52
  == Changelog ==
53
 
54
+ = 2.3.2 (2016-01-10) =
55
+
56
+ * Fixed : Fixed a bug that Organization type of display error of contactType comes out.
57
+ * Fixed : Fixed a bug that can not save LocalBusiness type of latitude and longitude.
58
+
59
  = 2.3.1 (2016-01-07) =
60
 
61
  * Check : WordPress version 4.4.1 operation check.
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.3.1
7
  Author: Kazuya Takami
8
  Author URI: http://programp.com/
9
  License: GPLv2 or later
@@ -19,7 +19,7 @@ new Structuring_Markup();
19
  *
20
  * @author Kazuya Takami
21
  * @since 1.0.0
22
- * @version 2.3.1
23
  */
24
  class Structuring_Markup {
25
 
@@ -27,10 +27,10 @@ class Structuring_Markup {
27
  * Variable definition.
28
  *
29
  * @since 1.3.0
30
- * @version 2.3.1
31
  */
32
  private $text_domain = 'wp-structuring-markup';
33
- private $version = '2.3.1';
34
 
35
  /**
36
  * Constructor Define.
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.3.2
7
  Author: Kazuya Takami
8
  Author URI: http://programp.com/
9
  License: GPLv2 or later
19
  *
20
  * @author Kazuya Takami
21
  * @since 1.0.0
22
+ * @version 2.3.2
23
  */
24
  class Structuring_Markup {
25
 
27
  * Variable definition.
28
  *
29
  * @since 1.3.0
30
+ * @version 2.3.2
31
  */
32
  private $text_domain = 'wp-structuring-markup';
33
+ private $version = '2.3.2';
34
 
35
  /**
36
  * Constructor Define.