Changeset 48816
- Timestamp:
- 08/18/2020 12:37:39 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-query.php
r48586 r48816 2559 2559 * 2560 2560 * @param string $where The WHERE clause of the query. 2561 * @param WP_Query $this The WP_Query instance (passed by reference).2561 * @param WP_Query $this The WP_Query instance (passed by reference). 2562 2562 */ 2563 2563 $where = apply_filters_ref_array( 'posts_where', array( $where, &$this ) ); … … 2568 2568 * @since 1.5.0 2569 2569 * 2570 * @param string $join 2570 * @param string $join The JOIN clause of the query. 2571 2571 * @param WP_Query $this The WP_Query instance (passed by reference). 2572 2572 */ … … 2610 2610 * 2611 2611 * @param string $cjoin The JOIN clause of the query. 2612 * @param WP_Query $this The WP_Query instance (passed by reference).2612 * @param WP_Query $this The WP_Query instance (passed by reference). 2613 2613 */ 2614 2614 $cjoin = apply_filters_ref_array( 'comment_feed_join', array( $cjoin, &$this ) ); … … 2694 2694 * 2695 2695 * @param string $where The WHERE clause of the query. 2696 * @param WP_Query $this The WP_Query instance (passed by reference).2696 * @param WP_Query $this The WP_Query instance (passed by reference). 2697 2697 */ 2698 2698 $where = apply_filters_ref_array( 'posts_where_paged', array( $where, &$this ) ); … … 2715 2715 * @since 1.5.0 2716 2716 * 2717 * @param string $join 2717 * @param string $join The JOIN clause of the query. 2718 2718 * @param WP_Query $this The WP_Query instance (passed by reference). 2719 2719 */ … … 2806 2806 * 2807 2807 * @param string $where The WHERE clause of the query. 2808 * @param WP_Query $this The WP_Query instance (passed by reference).2808 * @param WP_Query $this The WP_Query instance (passed by reference). 2809 2809 */ 2810 2810 $where = apply_filters_ref_array( 'posts_where_request', array( $where, &$this ) ); … … 2829 2829 * @since 2.5.0 2830 2830 * 2831 * @param string $join 2831 * @param string $join The JOIN clause of the query. 2832 2832 * @param WP_Query $this The WP_Query instance (passed by reference). 2833 2833 */ … … 3186 3186 * 3187 3187 * @param WP_Post[] $posts Array of post objects. 3188 * @param WP_Query $this The WP_Query instance (passed by reference).3188 * @param WP_Query $this The WP_Query instance (passed by reference). 3189 3189 */ 3190 3190 $this->posts = apply_filters_ref_array( 'the_posts', array( $this->posts, &$this ) );
Note: See TracChangeset
for help on using the changeset viewer.