Changeset 43582 for trunk/src/wp-includes/class-wp-query.php
- Timestamp:
- 08/27/2018 02:27:22 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-query.php
r43571 r43582 1687 1687 1688 1688 /** 1689 * Retrieve theposts based on query variables.1689 * Retrieves an array of posts based on query variables. 1690 1690 * 1691 1691 * There are a few filters and actions that can be used to modify the post … … 1694 1694 * @since 1.5.0 1695 1695 * 1696 * @return array List of posts.1696 * @return WP_Post[]|int[] Array of post objects or post IDs. 1697 1697 */ 1698 1698 public function get_posts() { … … 3358 3358 * 3359 3359 * @param string|array $query URL query string or array of query arguments. 3360 * @return array List of posts.3360 * @return WP_Post[]|int[] Array of post objects or post IDs. 3361 3361 */ 3362 3362 public function query( $query ) {
Note: See TracChangeset
for help on using the changeset viewer.