Make WordPress Core


Ignore:
Timestamp:
01/18/2021 12:26:50 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Docs: Link to the parent function for accepted arguments in some filters for HTML output.

See #51800.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/general-template.php

    r49976 r49977  
    248248     *
    249249     * @param array $args The array of arguments for building the search form.
     250     *                    See get_search_form() for information on accepted arguments.
    250251     */
    251252    do_action( 'pre_get_search_form', $args );
     
    279280     *
    280281     * @param array $args The array of arguments for building the search form.
     282     *                    See get_search_form() for information on accepted arguments.
    281283     */
    282284    $args = apply_filters( 'search_form_args', $args );
     
    296298     *                       Accepts 'html5', 'xhtml'.
    297299     * @param array  $args   The array of arguments for building the search form.
     300     *                       See get_search_form() for information on accepted arguments.
    298301     */
    299302    $format = apply_filters( 'search_form_format', $format, $args );
     
    344347     * @param string $form The search form HTML output.
    345348     * @param array  $args The array of arguments for building the search form.
     349     *                     See get_search_form() for information on accepted arguments.
    346350     */
    347351    $result = apply_filters( 'get_search_form', $form, $args );
     
    43644368     *
    43654369     * @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.
    43674372     */
    43684373    $r = apply_filters( 'paginate_links_output', $r, $args );
Note: See TracChangeset for help on using the changeset viewer.