Version Description
Download this release
Release Info
Developer | Mat Lipe |
Plugin | Advanced Sidebar Menu |
Version | 5.0.3 |
Comparing to | |
See all releases |
Code changes from version 5.0.2 to 5.0.3
- advanced-sidebar-menu.php +2 -2
- readme.txt +2 -2
- widgets/page.widget.php +0 -4
advanced-sidebar-menu.php
CHANGED
@@ -4,11 +4,11 @@ Plugin Name: Advanced Sidebar Menu
|
|
4 |
Plugin URI: http://matlipe.com/advanced-sidebar-menu/
|
5 |
Description: Creates dynamic menu based on child/parent relationship.
|
6 |
Author: Mat Lipe
|
7 |
-
Version: 5.0.
|
8 |
Author URI: http://matlipe.com
|
9 |
*/
|
10 |
|
11 |
-
define( 'ADVANCED_SIDEBAR_BASIC_VERSION', '5.0.
|
12 |
|
13 |
|
14 |
#-- Define Constants
|
4 |
Plugin URI: http://matlipe.com/advanced-sidebar-menu/
|
5 |
Description: Creates dynamic menu based on child/parent relationship.
|
6 |
Author: Mat Lipe
|
7 |
+
Version: 5.0.3
|
8 |
Author URI: http://matlipe.com
|
9 |
*/
|
10 |
|
11 |
+
define( 'ADVANCED_SIDEBAR_BASIC_VERSION', '5.0.3' );
|
12 |
|
13 |
|
14 |
#-- Define Constants
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Contributors: Mat Lipe
|
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40lipeimagination%2einfo&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, heirchy, category menu, pages menu
|
6 |
Requires at least: 3.8.0
|
7 |
-
Tested up to: 4.0
|
8 |
-
Stable tag: 5.0.
|
9 |
|
10 |
Creates a widget for both page and categories that will display the current page/category and all child pages or categories.
|
11 |
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypal%40lipeimagination%2einfo&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, heirchy, category menu, pages menu
|
6 |
Requires at least: 3.8.0
|
7 |
+
Tested up to: 4.1.0
|
8 |
+
Stable tag: 5.0.3
|
9 |
|
10 |
Creates a widget for both page and categories that will display the current page/category and all child pages or categories.
|
11 |
|
widgets/page.widget.php
CHANGED
@@ -181,10 +181,6 @@ class advanced_sidebar_menu_page extends WP_Widget {
|
|
181 |
$asm->instance = $instance;
|
182 |
$asm->args = $args;
|
183 |
|
184 |
-
if( isset( $args[ 'level_limit' ] ) ){
|
185 |
-
$asm->levels = $args[ 'level_limit' ];
|
186 |
-
}
|
187 |
-
|
188 |
do_action( 'advanced_sidebar_menu_widget_pre_render', $asm, $this );
|
189 |
|
190 |
//The excluded pages
|
181 |
$asm->instance = $instance;
|
182 |
$asm->args = $args;
|
183 |
|
|
|
|
|
|
|
|
|
184 |
do_action( 'advanced_sidebar_menu_widget_pre_render', $asm, $this );
|
185 |
|
186 |
//The excluded pages
|