Changeset 49977
- Timestamp:
- 01/18/2021 12:26:50 PM (4 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/category-template.php
r49926 r49977 663 663 * 664 664 * @param string $output HTML output. 665 * @param array $args An array of taxonomy-listing arguments. 665 * @param array $args An array of taxonomy-listing arguments. See wp_list_categories() 666 * for information on accepted arguments. 666 667 */ 667 668 $html = apply_filters( 'wp_list_categories', $output, $args ); … … 759 760 * 760 761 * @param string|string[] $return Tag cloud as a string or an array, depending on 'format' argument. 761 * @param array $args An array of tag cloud arguments. 762 * @param array $args An array of tag cloud arguments. See wp_tag_cloud() 763 * for information on accepted arguments. 762 764 */ 763 765 $return = apply_filters( 'wp_tag_cloud', $return, $args ); -
trunk/src/wp-includes/general-template.php
r49976 r49977 248 248 * 249 249 * @param array $args The array of arguments for building the search form. 250 * See get_search_form() for information on accepted arguments. 250 251 */ 251 252 do_action( 'pre_get_search_form', $args ); … … 279 280 * 280 281 * @param array $args The array of arguments for building the search form. 282 * See get_search_form() for information on accepted arguments. 281 283 */ 282 284 $args = apply_filters( 'search_form_args', $args ); … … 296 298 * Accepts 'html5', 'xhtml'. 297 299 * @param array $args The array of arguments for building the search form. 300 * See get_search_form() for information on accepted arguments. 298 301 */ 299 302 $format = apply_filters( 'search_form_format', $format, $args ); … … 344 347 * @param string $form The search form HTML output. 345 348 * @param array $args The array of arguments for building the search form. 349 * See get_search_form() for information on accepted arguments. 346 350 */ 347 351 $result = apply_filters( 'get_search_form', $form, $args ); … … 4364 4368 * 4365 4369 * @param string $r HTML output. 4366 * @param array $args An array of arguments. See paginate_links() for accepted arguments. 4370 * @param array $args An array of arguments. See paginate_links() 4371 * for information on accepted arguments. 4367 4372 */ 4368 4373 $r = apply_filters( 'paginate_links_output', $r, $args ); -
trunk/src/wp-includes/post-template.php
r49927 r49977 947 947 * @since 3.0.0 948 948 * 949 * @param array $parsed_args An array of arguments for page links for paginated posts. 949 * @param array $parsed_args An array of page link arguments. See wp_link_pages() 950 * for information on accepted arguments. 950 951 */ 951 952 $parsed_args = apply_filters( 'wp_link_pages_args', $parsed_args ); … … 1006 1007 * 1007 1008 * @param string $output HTML output of paginated posts' page links. 1008 * @param array $args An array of arguments. 1009 * @param array $args An array of arguments. See wp_link_pages() 1010 * for information on accepted arguments. 1009 1011 */ 1010 1012 $html = apply_filters( 'wp_link_pages', $output, $args ); … … 1209 1211 * 1210 1212 * @param string $output HTML output for drop down list of pages. 1211 * @param array $parsed_args The parsed arguments array. 1213 * @param array $parsed_args The parsed arguments array. See wp_dropdown_pages() 1214 * for information on accepted arguments. 1212 1215 * @param WP_Post[] $pages Array of the page objects. 1213 1216 */ … … 1338 1341 * 1339 1342 * @param string $output HTML output of the pages list. 1340 * @param array $parsed_args An array of page-listing arguments. 1343 * @param array $parsed_args An array of page-listing arguments. See wp_list_pages() 1344 * for information on accepted arguments. 1341 1345 * @param WP_Post[] $pages Array of the page objects. 1342 1346 */ … … 1418 1422 * @see wp_page_menu() 1419 1423 * 1420 * @param array $args An array of page menu arguments. 1424 * @param array $args An array of page menu arguments. See wp_page_menu() 1425 * for information on accepted arguments. 1421 1426 */ 1422 1427 $args = apply_filters( 'wp_page_menu_args', $args ); … … 1492 1497 * 1493 1498 * @param string $menu The HTML output. 1494 * @param array $args An array of arguments. 1499 * @param array $args An array of arguments. See wp_page_menu() 1500 * for information on accepted arguments. 1495 1501 */ 1496 1502 $menu = apply_filters( 'wp_page_menu', $menu, $args );
Note: See TracChangeset
for help on using the changeset viewer.