Make WordPress Core

Changeset 29578


Ignore:
Timestamp:
08/23/2014 07:36:00 PM (10 years ago)
Author:
DrewAPicture
Message:

Fix a couple of misplaced/misordered argument descriptions in the WP_Query arguments hash notation.

See #25367.

File:
1 edited

Legend:

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

    r29538 r29578  
    14761476     *     @type int          $hour                    Hour of the day. Default empty. Accepts numbers 0-23.
    14771477     *     @type bool         $ignore_sticky_posts     Whether to ignore sticky posts or not. Setting this to false
    1478      *                                                 excludes stickies from 'post__in'. Default 0|false. Accepts
    1479      *                                                 1|true, 0|false.
    1480      *     @type int          $m                       Combination YearMonth. Default empty. Accepts any four-digit
    1481      *                                                 year and month numbers 1-12.
     1478     *                                                 excludes stickies from 'post__in'. Accepts 1|true, 0|false.
     1479     *                                                 Default 0|false.
     1480     *     @type int          $m                       Combination YearMonth. Accepts any four-digit year and month
     1481     *                                                 numbers 1-12. Default empty.
    14821482     *     @type string       $meta_compare            Comparison operator to test the 'meta_value'.
    14831483     *     @type string       $meta_key                Custom field key.
     
    15101510     *     @type string       $post_mime_type          The mime type of the post. Used for 'attachment' post_type.
    15111511     *     @type array        $post__not_in            An array of post IDs not to retrieve. Note: a string of comma-
     1512     *                                                 separated IDs will NOT work.
    15121513     *     @type int          $post_parent             Page ID to retrieve child pages for. Use 0 to only retrieve
    15131514     *                                                 top-level pages.
    15141515     *     @type array        $post_parent__in         An array containing parent page IDs to query child pages from.
    15151516     *     @type array        $post_parent__not_in     An array containing parent page IDs not to query child pages from.
    1516      *                                                 separated IDs will NOT work.
    15171517     *     @type string|array $post_type               A post type slug (string) or array of post type slugs.
    15181518     *                                                 Default 'any' if using 'tax_query'.
Note: See TracChangeset for help on using the changeset viewer.