Changeset 46596 for trunk/src/wp-includes/post-template.php
- Timestamp:
- 10/26/2019 09:07:10 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post-template.php
r46451 r46596 1203 1203 * @since 4.4.0 `$parsed_args` and `$pages` added as arguments. 1204 1204 * 1205 * @param string $output HTML output for drop down list of pages.1206 * @param array $parsed_args The parsed arguments array.1207 * @param array $pages List of WP_Post objects returned by `get_pages()`1205 * @param string $output HTML output for drop down list of pages. 1206 * @param array $parsed_args The parsed arguments array. 1207 * @param WP_Post[] $pages Array of the page objects. 1208 1208 */ 1209 1209 $html = apply_filters( 'wp_dropdown_pages', $output, $parsed_args, $pages ); … … 1293 1293 * @since 2.1.0 1294 1294 * 1295 * @param array$exclude_array An array of page IDs to exclude.1295 * @param string[] $exclude_array An array of page IDs to exclude. 1296 1296 */ 1297 1297 $parsed_args['exclude'] = implode( ',', apply_filters( 'wp_list_pages_excludes', $exclude_array ) ); … … 1331 1331 * @see wp_list_pages() 1332 1332 * 1333 * @param string $output HTML output of the pages list.1334 * @param array $parsed_args An array of page-listing arguments.1335 * @param array $pages List of WP_Post objects returned by `get_pages()`1333 * @param string $output HTML output of the pages list. 1334 * @param array $parsed_args An array of page-listing arguments. 1335 * @param WP_Post[] $pages Array of the page objects. 1336 1336 */ 1337 1337 $html = apply_filters( 'wp_list_pages', $output, $parsed_args, $pages );
Note: See TracChangeset
for help on using the changeset viewer.