- Timestamp:
- 09/09/2021 12:38:36 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-walker-category-checklist.php
r51739 r51779 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 * @since 5.9.0 Renamed `$category` to `$data_object` and `$id` to `$current_object_id` 65 * to match parent class for PHP 8 named parameter support. 65 66 * 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.67 * @param string $output Used to append additional content (passed by reference). 68 * @param WP_Term $data_object The current term object. 69 * @param int $depth Depth of the term in reference to parents. Default 0. 70 * @param array $args An array of arguments. @see wp_terms_checklist() 71 * @param int $current_object_id Optional. ID of the current term. Default 0. 71 72 */ 72 public function start_el( &$output, $data_object, $depth = 0, $args = array(), $ id = 0 ) {73 public function start_el( &$output, $data_object, $depth = 0, $args = array(), $current_object_id = 0 ) { 73 74 // Restores the more descriptive, specific name for use within this method. 74 75 $category = $data_object;
Note: See TracChangeset
for help on using the changeset viewer.