Version Description
- Include WP core version in debug info.
- Tested to WordPress 5.9.2.
Download this release
Release Info
Developer | Mat Lipe |
Plugin | Advanced Sidebar Menu |
Version | 8.7.3 |
Comparing to | |
See all releases |
Code changes from version 8.7.2 to 8.7.3
- advanced-sidebar-menu.php +2 -2
- readme.txt +6 -2
- src/Debug.php +2 -1
advanced-sidebar-menu.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: https://onpointplugins.com/advanced-sidebar-menu/
|
5 |
* Description: Creates dynamic menus based on parent/child relationship of your pages or categories.
|
6 |
* Author: OnPoint Plugins
|
7 |
-
* Version: 8.7.
|
8 |
* Author URI: https://onpointplugins.com
|
9 |
* Text Domain: advanced-sidebar-menu
|
10 |
* Domain Path: /languages/
|
@@ -19,7 +19,7 @@ if ( defined( 'ADVANCED_SIDEBAR_BASIC_VERSION' ) ) {
|
|
19 |
return;
|
20 |
}
|
21 |
|
22 |
-
define( 'ADVANCED_SIDEBAR_BASIC_VERSION', '8.7.
|
23 |
define( 'ADVANCED_SIDEBAR_MENU_REQUIRED_PRO_VERSION', '8.5.0' );
|
24 |
define( 'ADVANCED_SIDEBAR_DIR', plugin_dir_path( __FILE__ ) );
|
25 |
define( 'ADVANCED_SIDEBAR_MENU_URL', plugin_dir_url( __FILE__ ) );
|
4 |
* Plugin URI: https://onpointplugins.com/advanced-sidebar-menu/
|
5 |
* Description: Creates dynamic menus based on parent/child relationship of your pages or categories.
|
6 |
* Author: OnPoint Plugins
|
7 |
+
* Version: 8.7.3
|
8 |
* Author URI: https://onpointplugins.com
|
9 |
* Text Domain: advanced-sidebar-menu
|
10 |
* Domain Path: /languages/
|
19 |
return;
|
20 |
}
|
21 |
|
22 |
+
define( 'ADVANCED_SIDEBAR_BASIC_VERSION', '8.7.3' );
|
23 |
define( 'ADVANCED_SIDEBAR_MENU_REQUIRED_PRO_VERSION', '8.5.0' );
|
24 |
define( 'ADVANCED_SIDEBAR_DIR', plugin_dir_path( __FILE__ ) );
|
25 |
define( 'ADVANCED_SIDEBAR_MENU_URL', plugin_dir_url( __FILE__ ) );
|
readme.txt
CHANGED
@@ -4,9 +4,9 @@ Contributors: Mat Lipe, onpointplugins
|
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40onpointplugins%2ecom&lc=US&item_name=Advanced%20Sidebar%20Menu&no_note=0¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest
|
5 |
Tags: menus, sidebar menu, hierarchy, category menu, pages menu, dynamic
|
6 |
Requires at least: 5.2.0
|
7 |
-
Tested up to: 5.9.
|
8 |
Requires PHP: 5.6.0
|
9 |
-
Stable tag: 8.7.
|
10 |
|
11 |
== Description ==
|
12 |
|
@@ -161,6 +161,10 @@ Yes. Based on whatever page, post or category you are on, the menu will change a
|
|
161 |
|
162 |
|
163 |
== Changelog ==
|
|
|
|
|
|
|
|
|
164 |
= 8.7.2 =
|
165 |
* Improved position of close icon in widget previews.
|
166 |
* Improved plugin links utm structure.
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40onpointplugins%2ecom&lc=US&item_name=Advanced%20Sidebar%20Menu&no_note=0¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest
|
5 |
Tags: menus, sidebar menu, hierarchy, category menu, pages menu, dynamic
|
6 |
Requires at least: 5.2.0
|
7 |
+
Tested up to: 5.9.2
|
8 |
Requires PHP: 5.6.0
|
9 |
+
Stable tag: 8.7.3
|
10 |
|
11 |
== Description ==
|
12 |
|
161 |
|
162 |
|
163 |
== Changelog ==
|
164 |
+
= 8.7.3 =
|
165 |
+
* Include WP core version in debug info.
|
166 |
+
* Tested to WordPress 5.9.2.
|
167 |
+
|
168 |
= 8.7.2 =
|
169 |
* Improved position of close icon in widget previews.
|
170 |
* Improved plugin links utm structure.
|
src/Debug.php
CHANGED
@@ -73,7 +73,8 @@ class Debug {
|
|
73 |
*/
|
74 |
public function print_instance( $menu, $widget ) {
|
75 |
$data = [
|
76 |
-
'version'
|
|
|
77 |
];
|
78 |
if ( defined( 'ADVANCED_SIDEBAR_MENU_PRO_VERSION' ) ) {
|
79 |
$data['pro_version'] = ADVANCED_SIDEBAR_MENU_PRO_VERSION;
|
73 |
*/
|
74 |
public function print_instance( $menu, $widget ) {
|
75 |
$data = [
|
76 |
+
'version' => ADVANCED_SIDEBAR_BASIC_VERSION,
|
77 |
+
'wp-version' => get_bloginfo( 'version' ),
|
78 |
];
|
79 |
if ( defined( 'ADVANCED_SIDEBAR_MENU_PRO_VERSION' ) ) {
|
80 |
$data['pro_version'] = ADVANCED_SIDEBAR_MENU_PRO_VERSION;
|