Version Description
(2022-02-18) = - Update to counter an error with WP-CLI.
Download this release
Release Info
Developer | Rustaurius |
Plugin | Business Profile |
Version | 2.2.1 |
Comparing to | |
See all releases |
Code changes from version 2.2.0 to 2.2.1
- business-profile.php +3 -5
- readme.txt +4 -1
business-profile.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Five Star Business Profile and Schema
|
4 |
* Plugin URI: https://www.fivestarplugins.com/plugins/business-profile/
|
5 |
* Description: Add schema structured data to any page or post type. Create an SEO friendly contact card with your business info and associated schema. Supports Google Map, opening hours and more.
|
6 |
-
* Version: 2.2.
|
7 |
* Author: Five Star Plugins
|
8 |
* Author URI: https://www.fivestarplugins.com
|
9 |
* License: GPLv3
|
@@ -68,9 +68,6 @@ if ( ! class_exists( 'bpfwpInit', false ) ) :
|
|
68 |
// Add a link to the Google Rich Results Test Page for front-end pages
|
69 |
add_action( 'admin_bar_menu', array( $this, 'add_admin_bar_link' ), 100 );
|
70 |
|
71 |
-
// Load permissions and handle combination
|
72 |
-
$this->permissions = new bpfwpPermissions();
|
73 |
-
|
74 |
// Load plugin dashboard
|
75 |
require_once( BPFWP_PLUGIN_DIR . '/includes/class-dashboard.php' );
|
76 |
new bpfwpDashboard();
|
@@ -123,7 +120,7 @@ if ( ! class_exists( 'bpfwpInit', false ) ) :
|
|
123 |
define( 'BPFWP_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
|
124 |
define( 'BPFWP_PLUGIN_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
|
125 |
define( 'BPFWP_PLUGIN_FNAME', plugin_basename( __FILE__ ) );
|
126 |
-
define( 'BPFWP_VERSION', '2.2.
|
127 |
}
|
128 |
|
129 |
/**
|
@@ -472,4 +469,5 @@ if ( ! class_exists( 'bpfwpInit', false ) ) :
|
|
472 |
}
|
473 |
endif;
|
474 |
|
|
|
475 |
$bpfwp_controller = bpfwpInit::instance();
|
3 |
* Plugin Name: Five Star Business Profile and Schema
|
4 |
* Plugin URI: https://www.fivestarplugins.com/plugins/business-profile/
|
5 |
* Description: Add schema structured data to any page or post type. Create an SEO friendly contact card with your business info and associated schema. Supports Google Map, opening hours and more.
|
6 |
+
* Version: 2.2.1
|
7 |
* Author: Five Star Plugins
|
8 |
* Author URI: https://www.fivestarplugins.com
|
9 |
* License: GPLv3
|
68 |
// Add a link to the Google Rich Results Test Page for front-end pages
|
69 |
add_action( 'admin_bar_menu', array( $this, 'add_admin_bar_link' ), 100 );
|
70 |
|
|
|
|
|
|
|
71 |
// Load plugin dashboard
|
72 |
require_once( BPFWP_PLUGIN_DIR . '/includes/class-dashboard.php' );
|
73 |
new bpfwpDashboard();
|
120 |
define( 'BPFWP_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
|
121 |
define( 'BPFWP_PLUGIN_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
|
122 |
define( 'BPFWP_PLUGIN_FNAME', plugin_basename( __FILE__ ) );
|
123 |
+
define( 'BPFWP_VERSION', '2.2.1' );
|
124 |
}
|
125 |
|
126 |
/**
|
469 |
}
|
470 |
endif;
|
471 |
|
472 |
+
global $bpfwp_controller;
|
473 |
$bpfwp_controller = bpfwpInit::instance();
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Plugin URL: https://www.fivestarplugins.com/plugins/business-profile/
|
|
5 |
Requires at Least: 5.3
|
6 |
Tested Up To: 5.9
|
7 |
Tags: business profile, seo, local seo, schema, address, google map, contact, phone, contact card, vcard, contact info, business location, business address, business map, business schema, organization schema, corporation schema, contact schema, address schema, location schema, map schema, business structured data, business microdata, address microdata, location structured data, location microdata, contact shortcode, location shortcode, address shortcode, schema shortcode, gutenberg schema, gutenberg address
|
8 |
-
Stable tag: 2.2.
|
9 |
License: GPLv3
|
10 |
License URI:http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -192,6 +192,9 @@ You'll find more help in the [User Guide](http://doc.themeofthecrop.com/plugins/
|
|
192 |
|
193 |
== Changelog ==
|
194 |
|
|
|
|
|
|
|
195 |
= 2.2.0 (2022-02-16) =
|
196 |
- Changed how premium settings areas are previewed.
|
197 |
- Removed unused packaging files.
|
5 |
Requires at Least: 5.3
|
6 |
Tested Up To: 5.9
|
7 |
Tags: business profile, seo, local seo, schema, address, google map, contact, phone, contact card, vcard, contact info, business location, business address, business map, business schema, organization schema, corporation schema, contact schema, address schema, location schema, map schema, business structured data, business microdata, address microdata, location structured data, location microdata, contact shortcode, location shortcode, address shortcode, schema shortcode, gutenberg schema, gutenberg address
|
8 |
+
Stable tag: 2.2.1
|
9 |
License: GPLv3
|
10 |
License URI:http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
192 |
|
193 |
== Changelog ==
|
194 |
|
195 |
+
= 2.2.1 (2022-02-18) =
|
196 |
+
- Update to counter an error with WP-CLI.
|
197 |
+
|
198 |
= 2.2.0 (2022-02-16) =
|
199 |
- Changed how premium settings areas are previewed.
|
200 |
- Removed unused packaging files.
|