Make WordPress Core


Ignore:
Timestamp:
03/01/2020 05:19:58 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Docs: Synchronize parameter descriptions for conditional tags with their WP_Query counterpart methods.

See #48354, #48303.

File:
1 edited

Legend:

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

    r47397 r47401  
    36093609     * @since 3.1.0
    36103610     *
    3611      * @param string|string[] $post_types Optional. Post type or array of posts types to check against.
     3611     * @param string|string[] $post_types Optional. Post type or array of posts types
     3612     *                                    to check against. Default empty.
    36123613     * @return bool
    36133614     */
     
    36313632     * @since 3.1.0
    36323633     *
    3633      * @param int|string|int[]|string[] $attachment Optional. Attachment ID, title, slug, or array of such to check against.
     3634     * @param int|string|int[]|string[] $attachment Optional. Attachment ID, title, slug, or array of such
     3635     *                                              to check against. Default empty.
    36343636     * @return bool
    36353637     */
     
    36653667     * @since 3.1.0
    36663668     *
    3667      * @param int|string|int[]|string[] $author Optional. User ID, nickname, nicename, or array of such to check against.
     3669     * @param int|string|int[]|string[] $author Optional. User ID, nickname, nicename, or array of such
     3670     *                                          to check against. Default empty.
    36683671     * @return bool
    36693672     */
     
    37003703     * @since 3.1.0
    37013704     *
    3702      * @param int|string|int[]|string[] $category Optional. Category ID, name, slug, or array of such to check against.
     3705     * @param int|string|int[]|string[] $category Optional. Category ID, name, slug, or array of such
     3706     *                                            to check against. Default empty.
    37033707     * @return bool
    37043708     */
     
    37353739     * @since 3.1.0
    37363740     *
    3737      * @param int|string|int[]|string[] $tag Optional. Tag ID, name, slug, or array of such to check against.
     3741     * @param int|string|int[]|string[] $tag Optional. Tag ID, name, slug, or array of such
     3742     *                                       to check against. Default empty.
    37383743     * @return bool
    37393744     */
     
    37773782     *
    37783783     * @param string|string[]           $taxonomy Optional. Taxonomy slug or slugs to check against.
    3779      * @param int|string|int[]|string[] $term     Optional. Term ID, name, slug, or array of such to check against.
    3780      * @return bool True for custom taxonomy archive pages, false for built-in taxonomies (category and tag archives).
     3784     *                                            Default empty.
     3785     * @param int|string|int[]|string[] $term     Optional. Term ID, name, slug, or array of such
     3786     *                                            to check against. Default empty.
     3787     * @return bool True for custom taxonomy archive pages, false for built-in taxonomies
     3788     *              (category and tag archives).
    37813789     */
    37823790    public function is_tax( $taxonomy = '', $term = '' ) {
     
    38553863     * @since 3.1.0
    38563864     *
    3857      * @param string|array $feeds Optional feed types to check.
     3865     * @param string|string[] $feeds Optional. Feed type or array of feed types
     3866     *                                         to check against. Default empty.
    38583867     * @return bool
    38593868     */
     
    39703979     * @since 3.1.0
    39713980     *
    3972      * @param int|string|array $page Optional. Page ID, title, slug, path, or array of such. Default empty.
     3981     * @param int|string|array $page Optional. Page ID, title, slug, path, or array of such
     3982     *                               to check against. Default empty.
    39733983     * @return bool Whether the query is for an existing single page.
    39743984     */
     
    40764086     * @since 3.1.0
    40774087     *
    4078      * @param int|string|array $post Optional. Post ID, title, slug, path, or array of such. Default empty.
     4088     * @param int|string|array $post Optional. Post ID, title, slug, path, or array of such
     4089     *                               to check against. Default empty.
    40794090     * @return bool Whether the query is for an existing single post.
    40804091     */
     
    41254136     * @since 3.1.0
    41264137     *
    4127      * @param string|array $post_types Optional. Post type or array of post types. Default empty.
    4128      * @return bool Whether the query is for an existing single post of any of the given post types.
     4138     * @param string|array $post_types Optional. Post type or array of post types
     4139     *                                 to check against. Default empty.
     4140     * @return bool Whether the query is for an existing single post
     4141     *              or any of the given post types.
    41294142     */
    41304143    public function is_singular( $post_types = '' ) {
Note: See TracChangeset for help on using the changeset viewer.