Changeset 42876 for trunk/src/wp-includes/class-wp-query.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-query.php
r42843 r42876 1380 1380 * @since 3.7.0 1381 1381 * 1382 * @param array $terms Terms to check.1382 * @param string[] $terms Array of terms to check. 1383 1383 * @return array Terms that are not stopwords. 1384 1384 */ … … 1448 1448 * @since 3.7.0 1449 1449 * 1450 * @param array $stopwords Stopwords.1450 * @param string[] $stopwords Array of stopwords. 1451 1451 */ 1452 1452 $this->stopwords = apply_filters( 'wp_search_stopwords', $stopwords ); … … 2695 2695 * @since 3.1.0 2696 2696 * 2697 * @param array $clauses The list ofclauses for the query.2697 * @param string[] $clauses Associative array of the clauses for the query. 2698 2698 * @param WP_Query $this The WP_Query instance (passed by reference). 2699 2699 */ … … 2819 2819 * @since 3.1.0 2820 2820 * 2821 * @param array $pieces The pieces of the query.2821 * @param string[] $pieces Associative array of the pieces of the query. 2822 2822 * @param WP_Query $this The WP_Query instance (passed by reference). 2823 2823 */ … … 2966 2966 * @since 2.3.0 2967 2967 * 2968 * @param array $posts The post results array.2969 * @param WP_Query $thisThe WP_Query instance (passed by reference).2968 * @param WP_Post[] $posts Array of post objects. 2969 * @param WP_Query $this The WP_Query instance (passed by reference). 2970 2970 */ 2971 2971 $this->posts = apply_filters_ref_array( 'posts_results', array( $this->posts, &$this ) ); … … 3103 3103 * @since 1.5.0 3104 3104 * 3105 * @param array $posts The array of retrieved posts.3106 * @param WP_Query $this The WP_Query instance (passed by reference).3105 * @param WP_Post[] $posts Array of post objects. 3106 * @param WP_Query $this The WP_Query instance (passed by reference). 3107 3107 */ 3108 3108 $this->posts = apply_filters_ref_array( 'the_posts', array( $this->posts, &$this ) ); … … 4178 4178 * @since 4.4.0 4179 4179 * 4180 * @param array $pages Array of "pages" derived from the post content. 4181 * of `<!-- nextpage -->` tags.. 4182 * @param WP_Post $post Current post object. 4180 * @param string[] $pages Array of "pages" from the post content split by `<!-- nextpage -->` tags. 4181 * @param WP_Post $post Current post object. 4183 4182 */ 4184 4183 $pages = apply_filters( 'content_pagination', $pages, $post );
Note: See TracChangeset
for help on using the changeset viewer.