Changeset 19679 for trunk/wp-includes/class-wp-walker.php
- Timestamp:
- 01/04/2012 11:03:46 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-walker.php
r16101 r19679 53 53 * @param string $output Passed by reference. Used to append additional content. 54 54 */ 55 function start_lvl( &$output) {}55 function start_lvl( &$output, $depth = 0, $args = array() ) {} 56 56 57 57 /** … … 67 67 * @param string $output Passed by reference. Used to append additional content. 68 68 */ 69 function end_lvl( &$output) {}69 function end_lvl( &$output, $depth = 0, $args = array() ) {} 70 70 71 71 /** … … 81 81 * @param string $output Passed by reference. Used to append additional content. 82 82 */ 83 function start_el( &$output) {}83 function start_el( &$output, $object, $depth, $args, $current_object_id = 0 ) {} 84 84 85 85 /** … … 94 94 * @param string $output Passed by reference. Used to append additional content. 95 95 */ 96 function end_el( &$output) {}96 function end_el( &$output, $object, $depth = 0, $args = array() ) {} 97 97 98 98 /**
Note: See TracChangeset
for help on using the changeset viewer.