| @@ -387,9 +387,9 @@ | ||
| 387 | 387 | * Filter the meta_query passed to \WP_Query. |
| 388 | 388 | * |
| 389 | 389 | * @since 3.2.0 |
| 390 | 390 | * |
| 391 | - * @param array $meta_query Array of meta_query parameters. | |
| 391 | + * @param mixed $meta_query Array of meta_query parameters. | |
| 392 | 392 | * @param array $args Arguments array. |
| 393 | 393 | */ |
| 394 | 394 | $meta_query = apply_filters( 'top_ten_query_meta_query', $meta_query, $args ); // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query |
| 395 | 395 | |
| @@ -896,9 +896,9 @@ | ||
| 896 | 896 | } |
| 897 | 897 | |
| 898 | 898 | // Support caching to speed up retrieval. |
| 899 | 899 | if ( $this->should_cache() && ! $this->in_cache ) { |
| 900 | - /** This filter is defined in display-posts.php */ | |
| 900 | + /** This filter is documented in includes/frontend/class-display.php */ | |
| 901 | 901 | $cache_time = apply_filters( 'tptn_cache_time', $this->query_args['cache_time'], $this->query_args ); |
| 902 | 902 | $cache_name = $this->cache_name; |
| 903 | 903 | $post_ids = wp_list_pluck( $query->posts, 'ID' ); |
| 904 | 904 | |