Changeset 47401
- Timestamp:
- 03/01/2020 05:19:58 PM (5 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-query.php
r47397 r47401 3609 3609 * @since 3.1.0 3610 3610 * 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. 3612 3613 * @return bool 3613 3614 */ … … 3631 3632 * @since 3.1.0 3632 3633 * 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. 3634 3636 * @return bool 3635 3637 */ … … 3665 3667 * @since 3.1.0 3666 3668 * 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. 3668 3671 * @return bool 3669 3672 */ … … 3700 3703 * @since 3.1.0 3701 3704 * 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. 3703 3707 * @return bool 3704 3708 */ … … 3735 3739 * @since 3.1.0 3736 3740 * 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. 3738 3743 * @return bool 3739 3744 */ … … 3777 3782 * 3778 3783 * @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). 3781 3789 */ 3782 3790 public function is_tax( $taxonomy = '', $term = '' ) { … … 3855 3863 * @since 3.1.0 3856 3864 * 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. 3858 3867 * @return bool 3859 3868 */ … … 3970 3979 * @since 3.1.0 3971 3980 * 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. 3973 3983 * @return bool Whether the query is for an existing single page. 3974 3984 */ … … 4076 4086 * @since 3.1.0 4077 4087 * 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. 4079 4090 * @return bool Whether the query is for an existing single post. 4080 4091 */ … … 4125 4136 * @since 3.1.0 4126 4137 * 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. 4129 4142 */ 4130 4143 public function is_singular( $post_types = '' ) { -
trunk/src/wp-includes/query.php
r47397 r47401 173 173 * @global WP_Query $wp_query WordPress Query object. 174 174 * 175 * @param string|array $post_types Optional. Post type or array of posts types to check against. 175 * @param string|string[] $post_types Optional. Post type or array of posts types 176 * to check against. Default empty. 176 177 * @return bool 177 178 */ … … 198 199 * @global WP_Query $wp_query WordPress Query object. 199 200 * 200 * @param int|string|array|object $attachment Attachment ID, title, slug, or array of such. 201 * @param int|string|int[]|string[] $attachment Optional. Attachment ID, title, slug, or array of such 202 * to check against. Default empty. 201 203 * @return bool 202 204 */ … … 226 228 * @global WP_Query $wp_query WordPress Query object. 227 229 * 228 * @param int|string|int[]|string[] $author Optional. User ID, nickname, nicename, or array of such to check against. 230 * @param int|string|int[]|string[] $author Optional. User ID, nickname, nicename, or array of such 231 * to check against. Default empty. 229 232 * @return bool 230 233 */ … … 254 257 * @global WP_Query $wp_query WordPress Query object. 255 258 * 256 * @param int|string|int[]|string[] $category Optional. Category ID, name, slug, or array of such to check against. 259 * @param int|string|int[]|string[] $category Optional. Category ID, name, slug, or array of such 260 * to check against. Default empty. 257 261 * @return bool 258 262 */ … … 282 286 * @global WP_Query $wp_query WordPress Query object. 283 287 * 284 * @param int|string|int[]|string[] $tag Optional. Tag ID, name, slug, or array of such to check against. 288 * @param int|string|int[]|string[] $tag Optional. Tag ID, name, slug, or array of such 289 * to check against. Default empty. 285 290 * @return bool 286 291 */ … … 315 320 * 316 321 * @param string|string[] $taxonomy Optional. Taxonomy slug or slugs to check against. 317 * @param int|string|int[]|string[] $term Optional. Term ID, name, slug, or array of such to check against. 318 * @return bool True for custom taxonomy archive pages, false for built-in taxonomies (category and tag archives). 322 * Default empty. 323 * @param int|string|int[]|string[] $term Optional. Term ID, name, slug, or array of such 324 * to check against. Default empty. 325 * @return bool True for custom taxonomy archive pages, false for built-in taxonomies 326 * (category and tag archives). 319 327 */ 320 328 function is_tax( $taxonomy = '', $term = '' ) { … … 390 398 * @global WP_Query $wp_query WordPress Query object. 391 399 * 392 * @param string|array $feeds Optional feed types to check. 400 * @param string|string[] $feeds Optional. Feed type or array of feed types 401 * to check against. Default empty. 393 402 * @return bool 394 403 */ … … 561 570 * @global WP_Query $wp_query WordPress Query object. 562 571 * 563 * @param int|string|array $page Optional. Page ID, title, slug, or array of such. Default empty. 572 * @param int|string|array $page Optional. Page ID, title, slug, or array of such 573 * to check against. Default empty. 564 574 * @return bool Whether the query is for an existing single page. 565 575 */ … … 706 716 * @global WP_Query $wp_query WordPress Query object. 707 717 * 708 * @param int|string|array $post Optional. Post ID, title, slug, or array of such. Default empty. 718 * @param int|string|array $post Optional. Post ID, title, slug, or array of such 719 * to check against. Default empty. 709 720 * @return bool Whether the query is for an existing single post. 710 721 */ … … 738 749 * @global WP_Query $wp_query WordPress Query object. 739 750 * 740 * @param string|array $post_types Optional. Post type or array of post types. Default empty. 741 * @return bool Whether the query is for an existing single post of any of the given post types. 751 * @param string|array $post_types Optional. Post type or array of post types 752 * to check against. Default empty. 753 * @return bool Whether the query is for an existing single post 754 * or any of the given post types. 742 755 */ 743 756 function is_singular( $post_types = '' ) {
Note: See TracChangeset
for help on using the changeset viewer.