Make WordPress Core


Ignore:
Timestamp:
12/10/2020 11:57:29 PM (5 years ago)
Author:
johnbillion
Message:

Docs: Various docblock improvements.

See #51800

File:
1 edited

Legend:

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

    r49744 r49790  
    11791179 * @since 4.4.0
    11801180 *
    1181  * @return string[] An array of parameters to remove from the URL.
     1181 * @return string[] An array of query variable names to remove from the URL.
    11821182 */
    11831183function wp_removable_query_args() {
     
    12141214
    12151215    /**
    1216      * Filters the list of query variables to remove.
     1216     * Filters the list of query variable names to remove.
    12171217     *
    12181218     * @since 4.2.0
    12191219     *
    1220      * @param string[] $removable_query_args An array of query variables to remove from a URL.
     1220     * @param string[] $removable_query_args An array of query variable names to remove from a URL.
    12211221     */
    12221222    return apply_filters( 'removable_query_args', $removable_query_args );
Note: See TracChangeset for help on using the changeset viewer.