Version Description
Download this release
Release Info
Developer | Mat Lipe |
Plugin | Advanced Sidebar Menu |
Version | 4.1.4 |
Comparing to | |
See all releases |
Code changes from version 4.1.3 to 4.1.4
- advanced-sidebar-menu.php +12 -11
- readme.txt +2 -2
advanced-sidebar-menu.php
CHANGED
@@ -4,24 +4,25 @@ Plugin Name: Advanced Sidebar Menu
|
|
4 |
Plugin URI: http://lipeimagination.info/wordpress/advanced-sidebar-menu/
|
5 |
Description: Creates dynamic menu based on child/parent relationship.
|
6 |
Author: Mat Lipe
|
7 |
-
Version: 4.1.
|
8 |
Author URI: http://lipeimagination.info
|
9 |
-
Since:
|
10 |
*/
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
|
|
|
|
|
|
15 |
|
16 |
|
17 |
#-- Bring in the Widgets
|
18 |
-
require( '
|
|
|
|
|
|
|
19 |
|
20 |
-
#-- Define Constants
|
21 |
-
define( 'ADVANCED_SIDEBAR_WIDGETS_DIR', plugin_dir_path(__FILE__) . 'widgets/' );
|
22 |
-
define( 'ADVANCED_SIDEBAR_VIEWS_DIR', plugin_dir_path(__FILE__) . 'views/' );
|
23 |
-
define( 'ADVANCED_SIDEBAR_LEGACY_DIR', plugin_dir_path(__FILE__) . 'legacy/' );
|
24 |
-
define( 'ADVANCED_SIDEBAR_DIR', plugin_dir_path(__FILE__) );
|
25 |
|
26 |
|
27 |
#-- Bring in the JQuery
|
4 |
Plugin URI: http://lipeimagination.info/wordpress/advanced-sidebar-menu/
|
5 |
Description: Creates dynamic menu based on child/parent relationship.
|
6 |
Author: Mat Lipe
|
7 |
+
Version: 4.1.4
|
8 |
Author URI: http://lipeimagination.info
|
9 |
+
Since: 5.23.13
|
10 |
*/
|
11 |
|
12 |
+
|
13 |
+
#-- Define Constants
|
14 |
+
define( 'ADVANCED_SIDEBAR_DIR', plugin_dir_path(__FILE__) );
|
15 |
+
define( 'ADVANCED_SIDEBAR_WIDGETS_DIR', ADVANCED_SIDEBAR_DIR . 'widgets/' );
|
16 |
+
define( 'ADVANCED_SIDEBAR_VIEWS_DIR', ADVANCED_SIDEBAR_DIR . 'views/' );
|
17 |
+
define( 'ADVANCED_SIDEBAR_LEGACY_DIR', ADVANCED_SIDEBAR_DIR . 'legacy/' );
|
18 |
|
19 |
|
20 |
#-- Bring in the Widgets
|
21 |
+
require( ADVANCED_SIDEBAR_WIDGETS_DIR.'init.php' );
|
22 |
+
#-- Bring in the functions
|
23 |
+
require( ADVANCED_SIDEBAR_DIR.'lib/advancedSidebarMenu.php' );
|
24 |
+
$asm = new advancedSidebarMenu();
|
25 |
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
|
28 |
#-- Bring in the JQuery
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=paypa
|
|
4 |
Tags: menus, sidebar menu, heirchy, category menu, pages menu
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.5.1
|
7 |
-
Stable tag: 4.1.
|
8 |
|
9 |
Creates a widget for both page and categories that will display the current page/category and all child pages or categories.
|
10 |
|
@@ -63,7 +63,7 @@ e.g.
|
|
63 |
|
64 |
== Frequently Asked Questions ==
|
65 |
|
66 |
-
= Version 4.0 is not displaying all my 3rd and 4th level pages always. How do I bring this back
|
67 |
|
68 |
You will find a checkbox in the widget options for Legacy Mode.
|
69 |
|
4 |
Tags: menus, sidebar menu, heirchy, category menu, pages menu
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.5.1
|
7 |
+
Stable tag: 4.1.4
|
8 |
|
9 |
Creates a widget for both page and categories that will display the current page/category and all child pages or categories.
|
10 |
|
63 |
|
64 |
== Frequently Asked Questions ==
|
65 |
|
66 |
+
= Version 4.0 is not displaying all my 3rd and 4th level pages always. How do I bring this back? =
|
67 |
|
68 |
You will find a checkbox in the widget options for Legacy Mode.
|
69 |
|