Changeset 49977 for trunk/src/wp-includes/general-template.php
- Timestamp:
- 01/18/2021 12:26:50 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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 );
Note: See TracChangeset
for help on using the changeset viewer.