Changeset 24096
- Timestamp:
- 04/25/2013 11:10:36 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/query.php
r24034 r24096 3 3 * WordPress Query API 4 4 * 5 * The query API attempts to get which part of WordPress t o the user is on. It6 * also provides functionality togetting URL query information.5 * The query API attempts to get which part of WordPress the user is on. It 6 * also provides functionality for getting URL query information. 7 7 * 8 8 * @link http://codex.wordpress.org/The_Loop More information on The Loop. … … 2810 2810 global $wpdb; 2811 2811 2812 // Bail if posts is an empty array. Continue if posts is an empty string 2812 // Bail if posts is an empty array. Continue if posts is an empty string, 2813 2813 // null, or false to accommodate caching plugins that fill posts later. 2814 2814 if ( $q['no_found_rows'] || ( is_array( $this->posts ) && ! $this->posts ) )
Note: See TracChangeset
for help on using the changeset viewer.