- Timestamp:
- 09/08/2021 03:35:32 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-walker-category-checklist.php
r49197 r51739 62 62 * 63 63 * @since 2.5.1 64 * @since 5.9.0 Renamed `$category` to `$data_object` to match parent class for PHP 8 named parameter support. 64 65 * 65 * @param string $output Used to append additional content (passed by reference).66 * @param WP_Term $ categoryThe current term object.67 * @param int $depth Depth of the term in reference to parents. Default 0.68 * @param array $args An array of arguments. @see wp_terms_checklist()69 * @param int $id ID of the current term.66 * @param string $output Used to append additional content (passed by reference). 67 * @param WP_Term $data_object The current term object. 68 * @param int $depth Depth of the term in reference to parents. Default 0. 69 * @param array $args An array of arguments. @see wp_terms_checklist() 70 * @param int $id ID of the current term. 70 71 */ 71 public function start_el( &$output, $category, $depth = 0, $args = array(), $id = 0 ) { 72 public function start_el( &$output, $data_object, $depth = 0, $args = array(), $id = 0 ) { 73 // Restores the more descriptive, specific name for use within this method. 74 $category = $data_object; 75 72 76 if ( empty( $args['taxonomy'] ) ) { 73 77 $taxonomy = 'category';
Note: See TracChangeset
for help on using the changeset viewer.