Changeset 54883 for trunk/src/wp-admin/includes/template.php
- Timestamp:
- 11/26/2022 10:16:27 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r54267 r54883 261 261 * @since 2.5.1 262 262 * 263 * @param int $link_id 263 * @param int $link_id Optional. The link ID. Default 0. 264 264 */ 265 265 function wp_link_category_checklist( $link_id = 0 ) { … … 403 403 * @global WP_List_Table $wp_list_table 404 404 * 405 * @param int $position 406 * @param bool $checkbox 407 * @param string $mode 408 * @param bool $table_row 405 * @param int $position Optional. The value of the 'position' input field. Default 1. 406 * @param bool $checkbox Optional. The value of the 'checkbox' input field. Default false. 407 * @param string $mode Optional. If set to 'single', will use WP_Post_Comments_List_Table, 408 * otherwise WP_Comments_List_Table. Default 'single'. 409 * @param bool $table_row Optional. Whether to use a table instead of a div element. Default true. 409 410 */ 410 411 function wp_comment_reply( $position = 1, $checkbox = false, $mode = 'single', $table_row = true ) { … … 566 567 * @since 1.2.0 567 568 * 568 * @param array $meta569 * @param array[] $meta An array of meta data arrays keyed on 'meta_key' and 'meta_value'. 569 570 */ 570 571 function list_meta( $meta ) { … … 610 611 * @since 2.5.0 611 612 * 612 * @param array $entry 613 * @param int $count 614 * @return string 613 * @param array $entry An array of meta data keyed on 'meta_key' and 'meta_value'. 614 * @param int $count Reference to the row number. 615 * @return string A single row of public meta data. 615 616 */ 616 617 function _list_meta_row( $entry, &$count ) { … … 1970 1971 * @since 2.7.0 1971 1972 * 1972 * @param string $found_action 1973 * @param string $found_action Optional. The value of the 'found_action' input field. Default empty string. 1973 1974 */ 1974 1975 function find_posts_div( $found_action = '' ) {
Note: See TracChangeset
for help on using the changeset viewer.