Advanced Sidebar Menu - Version 3.4.2

Version Description

Download this release

Release Info

Developer Mat Lipe
Plugin Icon 128x128 Advanced Sidebar Menu
Version 3.4.2
Comparing to
See all releases

Code changes from version 3.4.1 to 3.4.2

advanced-sidebar-menu.php CHANGED
@@ -4,7 +4,7 @@ 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: 3.4.0
8
  Author URI: http://lipeimagination.info
9
  Since: 10.5.12
10
  Email: mat@lipeimagination.info
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: 3.4.2
8
  Author URI: http://lipeimagination.info
9
  Since: 10.5.12
10
  Email: mat@lipeimagination.info
readme.txt CHANGED
@@ -4,8 +4,8 @@ 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.4.2
7
- Stable tag: 3.4.1
8
- Version: 3.4.1
9
 
10
  == Description ==
11
 
4
  Tags: menus, sidebar menu, heirchy, category menu, pages menu
5
  Requires at least: 3.1
6
  Tested up to: 3.4.2
7
+ Stable tag: 3.4.2
8
+ Version: 3.4.2
9
 
10
  == Description ==
11
 
widgets/category.widget.php CHANGED
@@ -117,7 +117,7 @@ class advanced_sidebar_menu_category extends WP_Widget {
117
  // This decides the name of the widget
118
  function advanced_sidebar_menu_category( ) {
119
  /* Widget settings. */
120
- $widget_ops = array( 'classname' => 'sidebar-menu-category', 'description' => 'Creates a menu of all the Categories using the child/parent relationship' );
121
  $control_ops = array( 'width' => 290 );
122
  /* Create the widget. */
123
  $this->WP_Widget( 'advanced_sidebar_menu_category', 'Advanced Sidebar Categories Menu', $widget_ops, $control_ops );
117
  // This decides the name of the widget
118
  function advanced_sidebar_menu_category( ) {
119
  /* Widget settings. */
120
+ $widget_ops = array( 'classname' => 'advanced-sidebar-menu advanced-sidebar-category', 'description' => 'Creates a menu of all the Categories using the child/parent relationship' );
121
  $control_ops = array( 'width' => 290 );
122
  /* Create the widget. */
123
  $this->WP_Widget( 'advanced_sidebar_menu_category', 'Advanced Sidebar Categories Menu', $widget_ops, $control_ops );
widgets/page.widget.php CHANGED
@@ -84,7 +84,7 @@ class advanced_sidebar_menu_page extends WP_Widget {
84
  // This decides the name of the widget
85
  function advanced_sidebar_menu_page( ) {
86
  /* Widget settings. */
87
- $widget_ops = array( 'classname' => 'sidebar-menu', 'description' => 'Creates a menu of all the pages using the child/parent relationship' );
88
  $control_ops = array( 'width' => 290 );
89
 
90
  /* Create the widget. */
84
  // This decides the name of the widget
85
  function advanced_sidebar_menu_page( ) {
86
  /* Widget settings. */
87
+ $widget_ops = array( 'classname' => 'advanced-sidebar-menu', 'description' => 'Creates a menu of all the pages using the child/parent relationship' );
88
  $control_ops = array( 'width' => 290 );
89
 
90
  /* Create the widget. */