Changeset 42876 for trunk/src/wp-includes/class-wp.php
- Timestamp:
- 03/25/2018 07:32:24 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp.php
r42419 r42876 13 13 * 14 14 * @since 2.0.0 15 * @var array15 * @var string[] 16 16 */ 17 17 public $public_query_vars = array( 'm', 'p', 'posts', 'w', 'cat', 'withcomments', 'withoutcomments', 's', 'search', 'exact', 'sentence', 'calendar', 'page', 'paged', 'more', 'tb', 'pb', 'author', 'order', 'orderby', 'year', 'monthnum', 'day', 'hour', 'minute', 'second', 'name', 'category_name', 'tag', 'feed', 'author_name', 'static', 'pagename', 'page_id', 'error', 'attachment', 'attachment_id', 'subpost', 'subpost_id', 'preview', 'robots', 'taxonomy', 'term', 'cpage', 'post_type', 'embed' ); … … 23 23 * 24 24 * @since 2.0.0 25 * @var array25 * @var string[] 26 26 */ 27 27 public $private_query_vars = array( 'offset', 'posts_per_page', 'posts_per_archive_page', 'showposts', 'nopaging', 'post_type', 'post_status', 'category__in', 'category__not_in', 'category__and', 'tag__in', 'tag__not_in', 'tag__and', 'tag_slug__in', 'tag_slug__and', 'tag_id', 'post_mime_type', 'perm', 'comments_per_page', 'post__in', 'post__not_in', 'post_parent', 'post_parent__in', 'post_parent__not_in', 'title', 'fields' ); … … 283 283 * @since 1.5.0 284 284 * 285 * @param array $public_query_vars The array of whitelisted query variables.285 * @param string[] $public_query_vars The array of whitelisted query variable names. 286 286 */ 287 287 $this->public_query_vars = apply_filters( 'query_vars', $this->public_query_vars ); … … 478 478 * @since 2.8.0 479 479 * 480 * @param array $headers The listof headers to be sent.481 * @param WP $this Current WordPress environment instance.480 * @param string[] $headers Associative array of headers to be sent. 481 * @param WP $this Current WordPress environment instance. 482 482 */ 483 483 $headers = apply_filters( 'wp_headers', $headers, $this );
Note: See TracChangeset
for help on using the changeset viewer.