Changeset 1713258
- Timestamp:
- 08/14/2017 04:08:05 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
dovetail/trunk/classes/class.admin-edit-menu-walker.php
r874081 r1713258 17 17 * @param string $output Passed by reference. 18 18 */ 19 function start_lvl( &$output) {}19 function start_lvl( &$output, $depth = 0, $args = array() ) {} 20 20 21 21 /** … … 25 25 * @param string $output Passed by reference. 26 26 */ 27 function end_lvl( &$output) {27 function end_lvl( &$output, $depth = 0, $args = array() ) { 28 28 } 29 29 … … 37 37 * @param object $args 38 38 */ 39 function start_el( &$output, $item, $depth, $args) {39 function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) { 40 40 global $_wp_nav_menu_max_depth; 41 41 $_wp_nav_menu_max_depth = $depth > $_wp_nav_menu_max_depth ? $depth : $_wp_nav_menu_max_depth;
Note: See TracChangeset
for help on using the changeset viewer.