Changeset 27211
- Timestamp:
- 02/20/2014 05:58:42 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/query.php
r27210 r27211 2960 2960 * @param WP_Query &$this The WP_Query instance (passed by reference). 2961 2961 */ 2962 $where = apply_filters_ref_array( 'posts_where_paged',array( $where, &$this ) );2962 $where = apply_filters_ref_array( 'posts_where_paged', array( $where, &$this ) ); 2963 2963 2964 2964 /** … … 2970 2970 * @param WP_Query &$this The WP_Query instance (passed by reference). 2971 2971 */ 2972 $groupby = apply_filters_ref_array( 'posts_groupby',array( $groupby, &$this ) );2972 $groupby = apply_filters_ref_array( 'posts_groupby', array( $groupby, &$this ) ); 2973 2973 2974 2974 /** … … 2982 2982 * @param WP_Query &$this The WP_Query instance (passed by reference). 2983 2983 */ 2984 $join = apply_filters_ref_array( 'posts_join_paged',array( $join, &$this ) );2984 $join = apply_filters_ref_array( 'posts_join_paged', array( $join, &$this ) ); 2985 2985 2986 2986 /** … … 2992 2992 * @param WP_Query &$this The WP_Query instance (passed by reference). 2993 2993 */ 2994 $orderby = apply_filters_ref_array( 'posts_orderby',array( $orderby, &$this ) );2994 $orderby = apply_filters_ref_array( 'posts_orderby', array( $orderby, &$this ) ); 2995 2995 2996 2996 /** … … 3002 3002 * @param WP_Query &$this The WP_Query instance (passed by reference). 3003 3003 */ 3004 $distinct = apply_filters_ref_array( 'posts_distinct',array( $distinct, &$this ) );3004 $distinct = apply_filters_ref_array( 'posts_distinct', array( $distinct, &$this ) ); 3005 3005 3006 3006 /** … … 3012 3012 * @param WP_Query &$this The WP_Query instance (passed by reference). 3013 3013 */ 3014 $limits = apply_filters_ref_array( 'post_limits',array( $limits, &$this ) );3014 $limits = apply_filters_ref_array( 'post_limits', array( $limits, &$this ) ); 3015 3015 3016 3016 /** … … 3022 3022 * @param WP_Query &$this The WP_Query instance (passed by reference). 3023 3023 */ 3024 $fields = apply_filters_ref_array( 'posts_fields',array( $fields, &$this ) );3024 $fields = apply_filters_ref_array( 'posts_fields', array( $fields, &$this ) ); 3025 3025 3026 3026 /** … … 3068 3068 * @param WP_Query &$this The WP_Query instance (passed by reference). 3069 3069 */ 3070 $where = apply_filters_ref_array( 'posts_where_request',array( $where, &$this ) );3070 $where = apply_filters_ref_array( 'posts_where_request', array( $where, &$this ) ); 3071 3071 3072 3072 /** … … 3080 3080 * @param WP_Query &$this The WP_Query instance (passed by reference). 3081 3081 */ 3082 $groupby = apply_filters_ref_array( 'posts_groupby_request',array( $groupby, &$this ) );3082 $groupby = apply_filters_ref_array( 'posts_groupby_request', array( $groupby, &$this ) ); 3083 3083 3084 3084 /** … … 3092 3092 * @param WP_Query &$this The WP_Query instance (passed by reference). 3093 3093 */ 3094 $join = apply_filters_ref_array( 'posts_join_request',array( $join, &$this ) );3094 $join = apply_filters_ref_array( 'posts_join_request', array( $join, &$this ) ); 3095 3095 3096 3096 /** … … 3104 3104 * @param WP_Query &$this The WP_Query instance (passed by reference). 3105 3105 */ 3106 $orderby = apply_filters_ref_array( 'posts_orderby_request',array( $orderby, &$this ) );3106 $orderby = apply_filters_ref_array( 'posts_orderby_request', array( $orderby, &$this ) ); 3107 3107 3108 3108 /** … … 3116 3116 * @param WP_Query &$this The WP_Query instance (passed by reference). 3117 3117 */ 3118 $distinct = apply_filters_ref_array( 'posts_distinct_request',array( $distinct, &$this ) );3118 $distinct = apply_filters_ref_array( 'posts_distinct_request', array( $distinct, &$this ) ); 3119 3119 3120 3120 /** … … 3128 3128 * @param WP_Query &$this The WP_Query instance (passed by reference). 3129 3129 */ 3130 $fields = apply_filters_ref_array( 'posts_fields_request',array( $fields, &$this ) );3130 $fields = apply_filters_ref_array( 'posts_fields_request', array( $fields, &$this ) ); 3131 3131 3132 3132 /** … … 3140 3140 * @param WP_Query &$this The WP_Query instance (passed by reference). 3141 3141 */ 3142 $limits = apply_filters_ref_array( 'post_limits_request',array( $limits, &$this ) );3142 $limits = apply_filters_ref_array( 'post_limits_request', array( $limits, &$this ) ); 3143 3143 3144 3144 /**
Note: See TracChangeset
for help on using the changeset viewer.