Changeset 49946 for trunk/src/wp-includes/class-wp-comment-query.php
- Timestamp:
- 01/08/2021 02:28:46 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-comment-query.php
r49693 r49946 411 411 * the comment count as an integer if `$this->query_vars['count']` is set, 412 412 * or null to allow WP to run its normal queries. 413 * @param WP_Comment_Query $ thisThe WP_Comment_Query instance, passed by reference.413 * @param WP_Comment_Query $query The WP_Comment_Query instance, passed by reference. 414 414 */ 415 415 $comment_data = apply_filters_ref_array( 'comments_pre_query', array( $comment_data, &$this ) ); … … 495 495 * 496 496 * @param WP_Comment[] $_comments An array of comments. 497 * @param WP_Comment_Query $ thisCurrent instance of WP_Comment_Query (passed by reference).497 * @param WP_Comment_Query $query Current instance of WP_Comment_Query (passed by reference). 498 498 */ 499 499 $_comments = apply_filters_ref_array( 'the_comments', array( $_comments, &$this ) ); … … 905 905 * 906 906 * @param string[] $pieces An associative array of comment query clauses. 907 * @param WP_Comment_Query $ thisCurrent instance of WP_Comment_Query (passed by reference).907 * @param WP_Comment_Query $query Current instance of WP_Comment_Query (passed by reference). 908 908 */ 909 909 $clauses = apply_filters_ref_array( 'comments_clauses', array( compact( $pieces ), &$this ) );
Note: See TracChangeset
for help on using the changeset viewer.