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

Version Description

(2017-11-01) = * Checked : WordPress version 4.8.3 operation check. * Fixed : Error setting aria-label.

Download this release

Release Info

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

Code changes from version 4.1.3 to 4.1.4

includes/admin/wp-structuring-admin-list.php CHANGED
@@ -3,7 +3,7 @@
3
  * Schema.org Admin List
4
  *
5
  * @author Kazuya Takami
6
- * @version 3.2.4
7
  * @since 1.0.0
8
  * @see wp-structuring-admin-db.php
9
  */
@@ -32,7 +32,7 @@ class Structuring_Markup_Admin_List {
32
  /**
33
  * LIST Page HTML Render.
34
  *
35
- * @version 3.2.4
36
  * @since 1.0.0
37
  */
38
  private function page_render () {
@@ -68,7 +68,7 @@ class Structuring_Markup_Admin_List {
68
  $html .= admin_url( $post_url . '&type=' . esc_html( $row->type ) . '&schema_post_id=' . esc_html( $row->id ) ) . '">' . $type_array[esc_html( $row->type )];
69
  $html .= '</a></strong>';
70
  $html .= '<div class="row-actions"><span class="edit"><a href="';
71
- $html .= admin_url( $post_url . '&type=' . esc_html( $row->type ) . '&schema_post_id=' . esc_html( $row->id ) ) . '" class="edit" aria-label="編集">' . esc_html__( 'Edit', $this->text_domain );
72
  $html .= '</a></span></div>';
73
  $html .= '<button type="button" class="toggle-row"><span class="screen-reader-text">' . __( 'Show more details', $this->text_domain ) . '</span></button>';
74
  $html .= '</td>';
3
  * Schema.org Admin List
4
  *
5
  * @author Kazuya Takami
6
+ * @version 4.1.4
7
  * @since 1.0.0
8
  * @see wp-structuring-admin-db.php
9
  */
32
  /**
33
  * LIST Page HTML Render.
34
  *
35
+ * @version 4.1.4
36
  * @since 1.0.0
37
  */
38
  private function page_render () {
68
  $html .= admin_url( $post_url . '&type=' . esc_html( $row->type ) . '&schema_post_id=' . esc_html( $row->id ) ) . '">' . $type_array[esc_html( $row->type )];
69
  $html .= '</a></strong>';
70
  $html .= '<div class="row-actions"><span class="edit"><a href="';
71
+ $html .= admin_url( $post_url . '&type=' . esc_html( $row->type ) . '&schema_post_id=' . esc_html( $row->id ) ) . '" class="edit" aria-label="' . esc_html__( 'Edit', $this->text_domain ) . '">' . esc_html__( 'Edit', $this->text_domain );
72
  $html .= '</a></span></div>';
73
  $html .= '<button type="button" class="toggle-row"><span class="screen-reader-text">' . __( 'Show more details', $this->text_domain ) . '</span></button>';
74
  $html .= '</td>';
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  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.8.2
6
- Stable tag: 4.1.3
7
 
8
  Allows you to include schema.org JSON-LD syntax markup on your website
9
 
@@ -54,6 +54,10 @@ if ( shortcode_exists( 'wp-structuring-markup-breadcrumb' ) ) {
54
 
55
  == Changelog ==
56
 
 
 
 
 
57
  = 4.1.3 (2017-09-27) =
58
  * Checked : WordPress version 4.8.2 operation check.
59
  * Updated : Stop setting the default value.
2
  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.8.3
6
+ Stable tag: 4.1.4
7
 
8
  Allows you to include schema.org JSON-LD syntax markup on your website
9
 
54
 
55
  == Changelog ==
56
 
57
+ = 4.1.4 (2017-11-01) =
58
+ * Checked : WordPress version 4.8.3 operation check.
59
+ * Fixed : Error setting aria-label.
60
+
61
  = 4.1.3 (2017-09-27) =
62
  * Checked : WordPress version 4.8.2 operation check.
63
  * Updated : Stop setting the default value.
wp-structuring-markup.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Markup (JSON-LD) structured in schema.org
4
  Plugin URI: https://github.com/miiitaka/wp-structuring-markup
5
  Description: Allows you to include schema.org JSON-LD syntax markup on your website
6
- Version: 4.1.3
7
  Author: Kazuya Takami
8
  Author URI: https://www.terakoya.work/
9
  License: GPLv2 or later
@@ -18,7 +18,7 @@ new Structuring_Markup();
18
  * Schema.org Basic Class
19
  *
20
  * @author Kazuya Takami
21
- * @version 4.1.3
22
  * @since 1.0.0
23
  */
24
  class Structuring_Markup {
@@ -26,10 +26,10 @@ class Structuring_Markup {
26
  /**
27
  * Variable definition version.
28
  *
29
- * @version 4.1.3
30
  * @since 1.3.0
31
  */
32
- private $version = '4.1.3';
33
 
34
  /**
35
  * Variable definition Text Domain.
3
  Plugin Name: Markup (JSON-LD) structured in schema.org
4
  Plugin URI: https://github.com/miiitaka/wp-structuring-markup
5
  Description: Allows you to include schema.org JSON-LD syntax markup on your website
6
+ Version: 4.1.4
7
  Author: Kazuya Takami
8
  Author URI: https://www.terakoya.work/
9
  License: GPLv2 or later
18
  * Schema.org Basic Class
19
  *
20
  * @author Kazuya Takami
21
+ * @version 4.1.4
22
  * @since 1.0.0
23
  */
24
  class Structuring_Markup {
26
  /**
27
  * Variable definition version.
28
  *
29
+ * @version 4.1.4
30
  * @since 1.3.0
31
  */
32
+ private $version = '4.1.4';
33
 
34
  /**
35
  * Variable definition Text Domain.