Changeset 1390102
- Timestamp:
- 04/08/2016 09:59:32 AM (10 years ago)
- Location:
- custom-menu-wizard/trunk
- Files:
-
- 3 edited
-
custom-menu-wizard.php (modified) (3 diffs)
-
doc/cmw-doc.html (modified) (2 diffs)
-
include/class.walker.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
custom-menu-wizard/trunk/custom-menu-wizard.php
r1382905 r1390102 4 4 * Plugin URI: http://wordpress.org/plugins/custom-menu-wizard/ 5 5 * Description: Show any part of a custom menu in a Widget, or in content using a Shortcode. Customise the output with extra classes or html; filter by current menu item or a specific item; set a depth, show the parent(s), change the list style, etc. Use the included emulator to assist with the filter settings. 6 * Version: 3.2. 56 * Version: 3.2.6 7 7 * Author: Roger Barrett 8 8 * Author URI: http://www.wizzud.com/ … … 12 12 defined( 'ABSPATH' ) or exit(); 13 13 /* 14 * v3.2.6 change log 15 * - added cmw-current-item class to the menu item that CMW is using as 'current item' 16 * 14 17 * v3.2.5 change log 15 18 * - added cmw-menu-item-had-children class to any menu item that originally had children, regardless of whether it still does when output … … 184 187 class Custom_Menu_Wizard_Plugin { 185 188 186 public static $version = '3.2. 5';189 public static $version = '3.2.6'; 187 190 public static $script_handle = 'custom-menu-wizard-plugin-script'; 188 191 public static $widget_class = 'Custom_Menu_Wizard_Widget'; -
custom-menu-wizard/trunk/doc/cmw-doc.html
r1382905 r1390102 120 120 <strong>Tested up to:</strong> 4.4</p> 121 121 <p> 122 <strong>Stable tag:</strong> 3.2. 5</p>122 <strong>Stable tag:</strong> 3.2.6</p> 123 123 <p> 124 124 <strong>License:</strong> GPLv2 or Later </p> … … 1305 1305 <div role="tabpanel" class="tab-pane fade" id="Changelog"> 1306 1306 <h2>Changelog</h2> 1307 <h4>3.2.5</h4> 1307 <h4>3.2.6</h4> 1308 1309 <ul> 1310 <li>addition : add cmw-current-item class to the menu item that CMW is using as 'current item'</li> 1311 </ul> 1312 1313 <h4>3.2.5</h4> 1308 1314 1309 1315 <ul> -
custom-menu-wizard/trunk/include/class.walker.php
r1382905 r1390102 328 328 ksort( $currentItem ); 329 329 $currentItem = array_shift( $currentItem ); 330 //add an extra class to the item that CMW is using as "current item"... 331 $this->_cmw_tree[ $currentItem ]['classes'][] = 'cmw-current-item'; 330 332 } 331 333
Note: See TracChangeset
for help on using the changeset viewer.