Make WordPress Core


Ignore:
Timestamp:
04/28/2022 09:44:12 AM (3 years ago)
Author:
johnbillion
Message:

Docs: Various docblock improvements.

See #54729

File:
1 edited

Legend:

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

    r52978 r53299  
    17521752     *
    17531753     * @param array $args Optional. Accepts 'pagenum' and 's' (search) arguments.
    1754      * @return array|false Results.
     1754     * @return array|false $results {
     1755     *     An array of associative arrays of query results, false if there are none.
     1756     *
     1757     *     @type array ...$0 {
     1758     *         @type int    $ID        Post ID.
     1759     *         @type string $title     The trimmed, escaped post title.
     1760     *         @type string $permalink Post permalink.
     1761     *         @type string $info      A 'Y/m/d'-formatted date for 'post' post type,
     1762     *                                 the 'singular_name' post type label otherwise.
     1763     *     }
     1764     * }
    17551765     */
    17561766    public static function wp_link_query( $args = array() ) {
Note: See TracChangeset for help on using the changeset viewer.