Version Description
This minor update fixes a problem in the Schema.org markup where your business description and URL got mixed up.
Download this release
Release Info
Developer | NateWr |
Plugin | Business Profile |
Version | 1.0.3 |
Comparing to | |
See all releases |
Code changes from version 1.0.2 to 1.0.3
- business-profile.php +1 -1
- includes/template-functions.php +2 -2
- readme.txt +7 -1
business-profile.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Business Profile
|
4 |
* Plugin URI: http://themeofthecrop.com
|
5 |
* Description: Contact information, Google Maps and opening hours made easy for businesses.
|
6 |
-
* Version: 1.0.
|
7 |
* Author: Theme of the Crop
|
8 |
* Author URI: http://themeofthecrop.com
|
9 |
* License: GNU General Public License v2.0 or later
|
3 |
* Plugin Name: Business Profile
|
4 |
* Plugin URI: http://themeofthecrop.com
|
5 |
* Description: Contact information, Google Maps and opening hours made easy for businesses.
|
6 |
+
* Version: 1.0.3
|
7 |
* Author: Theme of the Crop
|
8 |
* Author URI: http://themeofthecrop.com
|
9 |
* License: GNU General Public License v2.0 or later
|
includes/template-functions.php
CHANGED
@@ -100,8 +100,8 @@ function bpwfwp_print_name() {
|
|
100 |
|
101 |
<?php endif; ?>
|
102 |
|
103 |
-
<meta itemprop="description" content="<?php echo esc_attr( get_bloginfo( '
|
104 |
-
<meta itemprop="url" content="<?php echo esc_attr( get_bloginfo( '
|
105 |
|
106 |
<?php
|
107 |
}
|
100 |
|
101 |
<?php endif; ?>
|
102 |
|
103 |
+
<meta itemprop="description" content="<?php echo esc_attr( get_bloginfo( 'description' ) ) ?>">
|
104 |
+
<meta itemprop="url" content="<?php echo esc_attr( get_bloginfo( 'url' ) ); ?>">
|
105 |
|
106 |
<?php
|
107 |
}
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Plugin URL: http://themeofthecrop.com
|
|
5 |
Requires at Least: 3.9
|
6 |
Tested Up To: 4.0
|
7 |
Tags: business profile, address, google map, schema, contact, phone, address, seo
|
8 |
-
Stable tag: 1.0.
|
9 |
License: GPLv2 or later
|
10 |
Donate link: http://themeofthecrop.com
|
11 |
|
@@ -52,6 +52,9 @@ This plugin is packed with hooks so you can extend it as needed. Development tak
|
|
52 |
|
53 |
== Changelog ==
|
54 |
|
|
|
|
|
|
|
55 |
= 1.0.2 (2014-07-16) =
|
56 |
* Update Simple Admin Pages library to v2.0.a.7
|
57 |
|
@@ -68,6 +71,9 @@ This plugin is packed with hooks so you can extend it as needed. Development tak
|
|
68 |
|
69 |
== Upgrade Notice ==
|
70 |
|
|
|
|
|
|
|
71 |
= 1.0.2 =
|
72 |
This version updates a library used by the plugin to increase compatibility with the other plugins in my restaurant plugin suite.
|
73 |
|
5 |
Requires at Least: 3.9
|
6 |
Tested Up To: 4.0
|
7 |
Tags: business profile, address, google map, schema, contact, phone, address, seo
|
8 |
+
Stable tag: 1.0.3
|
9 |
License: GPLv2 or later
|
10 |
Donate link: http://themeofthecrop.com
|
11 |
|
52 |
|
53 |
== Changelog ==
|
54 |
|
55 |
+
= 1.0.3 (2014-09-04) =
|
56 |
+
* Fix swapped desc/url meta values. h/t @thatryan
|
57 |
+
|
58 |
= 1.0.2 (2014-07-16) =
|
59 |
* Update Simple Admin Pages library to v2.0.a.7
|
60 |
|
71 |
|
72 |
== Upgrade Notice ==
|
73 |
|
74 |
+
= 1.0.3 =
|
75 |
+
This minor update fixes a problem in the Schema.org markup where your business description and URL got mixed up.
|
76 |
+
|
77 |
= 1.0.2 =
|
78 |
This version updates a library used by the plugin to increase compatibility with the other plugins in my restaurant plugin suite.
|
79 |
|