Make WordPress Core


Ignore:
Timestamp:
05/02/2024 01:17:45 PM (9 months ago)
Author:
johnbillion
Message:

Docs: Various docblock improvements.

See #60699

File:
1 edited

Legend:

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

    r58069 r58075  
    557557
    558558/**
    559  * Flushes rewrite rules if siteurl, home or page_on_front changed.
     559 * Flushes rewrite rules if `siteurl`, `home` or `page_on_front` changed.
    560560 *
    561561 * @since 2.1.0
     
    577577
    578578/**
    579  * Resets global variables based on $_GET and $_POST.
     579 * Resets global variables based on `$_GET` and `$_POST`.
    580580 *
    581581 * This function resets global variables based on the names passed
    582  * in the $vars array to the value of $_POST[$var] or $_GET[$var] or ''
    583  * if neither is defined.
     582 * in the `$vars` array to the value of `$_POST[$var]` or `$_GET[$var]` or an
     583 * empty string if neither is defined.
    584584 *
    585585 * @since 2.0.0
     
    755755                 * Filters a screen option value before it is set.
    756756                 *
    757                  * The filter can also be used to modify non-standard [items]_per_page
     757                 * The filter can also be used to modify non-standard `[items]_per_page`
    758758                 * settings. See the parent function for a full list of standard options.
    759759                 *
     
    13051305
    13061306/**
    1307  * Adds the latest Heartbeat and REST-API nonce to the Heartbeat response.
     1307 * Adds the latest Heartbeat and REST API nonce to the Heartbeat response.
    13081308 *
    13091309 * @since 5.0.0
     
    13991399
    14001400    /**
    1401      * Filters the admin canonical url value.
     1401     * Filters the admin canonical URL value.
    14021402     *
    14031403     * @since 6.5.0
    14041404     *
    1405      * @param string $filtered_url The admin canonical url value.
     1405     * @param string $filtered_url The admin canonical URL value.
    14061406     */
    14071407    $filtered_url = apply_filters( 'wp_admin_canonical_url', $filtered_url );
Note: See TracChangeset for help on using the changeset viewer.