Version Description
(2016-05-09) =
- Checked : WordPress version 4.5.2 operation check.
- Checked : WordPress version 4.5.1 operation check.
Download this release
Release Info
Developer | miiitaka |
Plugin | Markup (JSON-LD) structured in schema.org |
Version | 2.5.1 |
Comparing to | |
See all releases |
Code changes from version 2.5.0 to 2.5.1
includes/wp-structuring-admin-type-breadcrumb.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Schema.org Type Breadcrumb
|
4 |
*
|
5 |
* @author Kazuya Takami
|
6 |
-
* @version 2.
|
7 |
* @since 2.0.0
|
8 |
* @see wp-structuring-admin-db.php
|
9 |
* @link https://schema.org/BreadcrumbList
|
@@ -28,13 +28,14 @@ class Structuring_Markup_Type_Breadcrumb {
|
|
28 |
/**
|
29 |
* Form Layout Render
|
30 |
*
|
31 |
-
* @
|
32 |
-
* @
|
|
|
33 |
*/
|
34 |
private function page_render ( array $option ) {
|
35 |
$html = '<table class="schema-admin-table">';
|
36 |
$html .= '<caption>Basic Setting</caption>';
|
37 |
-
$html .= '<tr><th><label for="home_on">Home
|
38 |
$html .= '<input type="checkbox" name="option[' . "home_on" . ']" id="home_on" value="on"';
|
39 |
if ( isset( $option['home_on'] ) && $option['home_on'] === 'on' ) {
|
40 |
$html .= ' checked="checked"';
|
3 |
* Schema.org Type Breadcrumb
|
4 |
*
|
5 |
* @author Kazuya Takami
|
6 |
+
* @version 2.5.1
|
7 |
* @since 2.0.0
|
8 |
* @see wp-structuring-admin-db.php
|
9 |
* @link https://schema.org/BreadcrumbList
|
28 |
/**
|
29 |
* Form Layout Render
|
30 |
*
|
31 |
+
* @version 2.5.1
|
32 |
+
* @since 2.3.3
|
33 |
+
* @param array $option
|
34 |
*/
|
35 |
private function page_render ( array $option ) {
|
36 |
$html = '<table class="schema-admin-table">';
|
37 |
$html .= '<caption>Basic Setting</caption>';
|
38 |
+
$html .= '<tr><th><label for="home_on">Display Home Page :</label></th><td>';
|
39 |
$html .= '<input type="checkbox" name="option[' . "home_on" . ']" id="home_on" value="on"';
|
40 |
if ( isset( $option['home_on'] ) && $option['home_on'] === 'on' ) {
|
41 |
$html .= ' checked="checked"';
|
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.5.
|
6 |
-
Stable tag: 2.5.
|
7 |
|
8 |
Allows you to include schema.org JSON-LD syntax markup on your website
|
9 |
|
@@ -52,6 +52,11 @@ if ( shortcode_exists( 'wp-structuring-markup-breadcrumb' ) ) {
|
|
52 |
|
53 |
== Changelog ==
|
54 |
|
|
|
|
|
|
|
|
|
|
|
55 |
= 2.5.0 (2016-04-19) =
|
56 |
|
57 |
* Updated : You can select a custom posts at the output page.
|
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.5.2
|
6 |
+
Stable tag: 2.5.1
|
7 |
|
8 |
Allows you to include schema.org JSON-LD syntax markup on your website
|
9 |
|
52 |
|
53 |
== Changelog ==
|
54 |
|
55 |
+
= 2.5.1 (2016-05-09) =
|
56 |
+
|
57 |
+
* Checked : WordPress version 4.5.2 operation check.
|
58 |
+
* Checked : WordPress version 4.5.1 operation check.
|
59 |
+
|
60 |
= 2.5.0 (2016-04-19) =
|
61 |
|
62 |
* Updated : You can select a custom posts at the output page.
|
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: Allows you to include schema.org JSON-LD syntax markup on your website
|
6 |
-
Version: 2.5.
|
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.5.
|
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.5.
|
31 |
*/
|
32 |
private $text_domain = 'wp-structuring-markup';
|
33 |
-
private $version = '2.5.
|
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: Allows you to include schema.org JSON-LD syntax markup on your website
|
6 |
+
Version: 2.5.1
|
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.5.1
|
23 |
*/
|
24 |
class Structuring_Markup {
|
25 |
|
27 |
* Variable definition.
|
28 |
*
|
29 |
* @since 1.3.0
|
30 |
+
* @version 2.5.1
|
31 |
*/
|
32 |
private $text_domain = 'wp-structuring-markup';
|
33 |
+
private $version = '2.5.1';
|
34 |
|
35 |
/**
|
36 |
* Constructor Define.
|