Changeset 32551
- Timestamp:
- 05/22/2015 08:04:38 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp.php
r31211 r32551 115 115 * 116 116 * @since 2.0.0 117 * 118 * @global WP_Rewrite $wp_rewrite 117 119 * 118 120 * @param array|string $extra_query_vars Set the extra query variables. … … 489 491 * WordPress environment. 490 492 * 491 * @global string $query_string Query string for the loop. 492 * @global array $posts The found posts. 493 * @global WP_Query $wp_query 494 * @global string $query_string Query string for the loop. 495 * @global array $posts The found posts. 493 496 * @global WP_Post|null $post The current post, if available. 494 * @global string $request The SQL statement for the request.495 * @global int $more Only set, if single page or post.496 * @global int $single If single page or post. Only set, if single page or post.497 * @global WP_User $authordata Only set, if author archive.497 * @global string $request The SQL statement for the request. 498 * @global int $more Only set, if single page or post. 499 * @global int $single If single page or post. Only set, if single page or post. 500 * @global WP_User $authordata Only set, if author archive. 498 501 * 499 502 * @since 2.0.0 … … 534 537 * 535 538 * @since 2.0.0 539 * 540 * @global WP_Query $wp_the_query 536 541 */ 537 542 public function query_posts() { … … 551 556 * 552 557 * @since 2.0.0 558 * 559 * @global WP_Query $wp_query 553 560 */ 554 561 public function handle_404() { … … 622 629 do_action_ref_array( 'wp', array( &$this ) ); 623 630 } 624 625 631 } 626 632 … … 679 685 * static helper function to ease use 680 686 * 687 * @static 681 688 * @access public 689 * 682 690 * @param string $subject subject 683 691 * @param array $matches data used for substitution … … 711 719 return ( isset( $this->_matches[$index] ) ? urlencode($this->_matches[$index]) : '' ); 712 720 } 713 714 721 }
Note: See TracChangeset
for help on using the changeset viewer.