Changeset 53318
- Timestamp:
- 04/29/2022 07:27:00 PM (3 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r53220 r53318 69 69 * @type int[] $popular_cats Array of category IDs to receive the "popular-category" class. 70 70 * Default false. 71 * @type Walker $walker Walker object to use to build the output. 72 * Default is a Walker_Category_Checklist instance.71 * @type Walker $walker Walker object to use to build the output. Default empty which 72 * results in a Walker_Category_Checklist instance being used. 73 73 * @type string $taxonomy Taxonomy to generate the checklist for. Default 'category'. 74 74 * @type bool $checked_ontop Whether to move checked items out of the hierarchy and to -
trunk/src/wp-includes/category-template.php
r52958 r53318 332 332 * @type bool $required Whether the `<select>` element should have the HTML5 'required' attribute. 333 333 * Default false. 334 * @type Walker $walker Walker object to use to build the output. Default empty which results in a 335 * Walker_CategoryDropdown instance being used. 334 336 * } 335 337 * @return string HTML dropdown list of categories. … … 519 521 * @type bool|int $use_desc_for_title Whether to use the category description as the title attribute. 520 522 * Accepts 0, 1, or their bool equivalents. Default 1. 523 * @type Walker $walker Walker object to use to build the output. Default empty which results 524 * in a Walker_Category instance being used. 521 525 * } 522 526 * @return void|string|false Void if 'echo' argument is true, HTML list of categories if 'echo' is false. -
trunk/src/wp-includes/post-template.php
r52935 r53318 1260 1260 * @type string $item_spacing Whether to preserve whitespace within the menu's HTML. Accepts 'preserve' or 'discard'. 1261 1261 * Default 'preserve'. 1262 * @type Walker $walker Walker instance to use for listing pages. Default empty (Walker_Page). 1262 * @type Walker $walker Walker instance to use for listing pages. Default empty which results in a 1263 * Walker_Page instance being used. 1263 1264 * } 1264 1265 * @return void|string Void if 'echo' argument is true, HTML list of pages if 'echo' is false. … … 1382 1383 * @type string $item_spacing Whether to preserve whitespace within the menu's HTML. Accepts 'preserve' 1383 1384 * or 'discard'. Default 'discard'. 1384 * @type Walker $walker Walker instance to use for listing pages. Default empty (Walker_Page). 1385 * @type Walker $walker Walker instance to use for listing pages. Default empty which results in a 1386 * Walker_Page instance being used. 1385 1387 * } 1386 1388 * @return void|string Void if 'echo' argument is true, HTML menu if 'echo' is false.
Note: See TracChangeset
for help on using the changeset viewer.