Changeset 53323 for trunk/src/wp-includes/class-wp-walker.php
- Timestamp:
- 05/01/2022 09:39:02 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-walker.php
r52794 r53323 30 30 31 31 /** 32 * Max number of pages walked by the paged walker 32 * Max number of pages walked by the paged walker. 33 33 * 34 34 * @since 2.7.0 … … 78 78 79 79 /** 80 * Start the element output.80 * Starts the element output. 81 81 * 82 82 * The $args parameter holds additional values that may be used with the child 83 * class methods. Includes the element output also.83 * class methods. Also includes the element output. 84 84 * 85 85 * @since 2.1.0 … … 112 112 113 113 /** 114 * Traverse elements to create list from elements.114 * Traverses elements to create list from elements. 115 115 * 116 116 * Display one element if the element doesn't have any children otherwise, … … 171 171 172 172 /** 173 * Display array of elements hierarchically.173 * Displays array of elements hierarchically. 174 174 * 175 175 * Does not assume any existing order of elements. … … 264 264 265 265 /** 266 * paged_walk() - produce a page of nested elements266 * Produces a page of nested elements. 267 267 * 268 268 * Given an array of hierarchical elements, the maximum depth, a specific page number, … … 282 282 * @param int $per_page Number of elements per page. 283 283 * @param mixed ...$args Optional additional arguments. 284 * @return string XHTML of the specified page of elements 284 * @return string XHTML of the specified page of elements. 285 285 */ 286 286 public function paged_walk( $elements, $max_depth, $page_num, $per_page, ...$args ) { … … 423 423 424 424 /** 425 * Unset all the children for a given top level element.425 * Unsets all the children for a given top level element. 426 426 * 427 427 * @since 2.7.0
Note: See TracChangeset
for help on using the changeset viewer.