Version Description
Download this release
Release Info
Developer | miiitaka |
Plugin | Markup (JSON-LD) structured in schema.org |
Version | 1.0.7 |
Comparing to | |
See all releases |
Code changes from version 1.0.6 to 1.0.7
- readme.txt +2 -2
- wp-structuring-admin-post.php +1 -1
- wp-structuring-markup.php +1 -1
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: miiitaka
|
|
3 |
Tags: schema, json, seo, posts
|
4 |
Requires at least: 4.3.1
|
5 |
Tested up to: 4.3.1
|
6 |
-
Stable tag: 1.0.
|
7 |
|
8 |
It is plug in to implement structured markup (JSON-LD syntax) by schema.org definition on an article or the fixed page.
|
9 |
|
@@ -21,7 +21,7 @@ Base knowledge is "https://developers.google.com/structured-data/"
|
|
21 |
|
22 |
== Changelog ==
|
23 |
|
24 |
-
= 1.0.
|
25 |
* Bug Fix.
|
26 |
|
27 |
= 1.0.0 =
|
3 |
Tags: schema, json, seo, posts
|
4 |
Requires at least: 4.3.1
|
5 |
Tested up to: 4.3.1
|
6 |
+
Stable tag: 1.0.7
|
7 |
|
8 |
It is plug in to implement structured markup (JSON-LD syntax) by schema.org definition on an article or the fixed page.
|
9 |
|
21 |
|
22 |
== Changelog ==
|
23 |
|
24 |
+
= 1.0.1 - 1.0.7 =
|
25 |
* Bug Fix.
|
26 |
|
27 |
= 1.0.0 =
|
wp-structuring-admin-post.php
CHANGED
@@ -102,7 +102,7 @@ class Structuring_Markup_Admin_Post {
|
|
102 |
*/
|
103 |
private function page_render( array $options, $mode, $status ) {
|
104 |
$html = '';
|
105 |
-
$html .= '<link rel="stylesheet" href="' .
|
106 |
$html .= '<div class="wrap">';
|
107 |
$html .= '<h1>Schema.org Post</h1>';
|
108 |
echo $html;
|
102 |
*/
|
103 |
private function page_render( array $options, $mode, $status ) {
|
104 |
$html = '';
|
105 |
+
$html .= '<link rel="stylesheet" href="' . plugins_url() . '/wp-structuring-markup/css/style.css">';
|
106 |
$html .= '<div class="wrap">';
|
107 |
$html .= '<h1>Schema.org Post</h1>';
|
108 |
echo $html;
|
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: It is plug in to implement structured markup (JSON-LD syntax) by schema.org definition on an article or the fixed page.
|
6 |
-
Version: 1.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://github.com/miiitaka/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: 1.0.7
|
7 |
Author: Kazuya Takami
|
8 |
Author URI: http://programp.com/
|
9 |
License: GPLv2 or later
|