Changeset 53376 for trunk/src/wp-includes/class-wp-network-query.php
- Timestamp:
- 05/10/2022 11:19:51 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-network-query.php
r53273 r53376 439 439 $groupby = ''; 440 440 441 $ clauses = array( 'fields', 'join', 'where', 'orderby', 'limits', 'groupby' );441 $pieces = array( 'fields', 'join', 'where', 'orderby', 'limits', 'groupby' ); 442 442 443 443 /** … … 449 449 * @param WP_Network_Query $query Current instance of WP_Network_Query (passed by reference). 450 450 */ 451 $clauses = apply_filters_ref_array( 'networks_clauses', array( compact( $ clauses ), &$this ) );451 $clauses = apply_filters_ref_array( 'networks_clauses', array( compact( $pieces ), &$this ) ); 452 452 453 453 $fields = isset( $clauses['fields'] ) ? $clauses['fields'] : '';
Note: See TracChangeset
for help on using the changeset viewer.