woocommerce_report_recent_reviews_query_from
Usage
add_filter( 'woocommerce_report_recent_reviews_query_from', 'wp_kama_woocommerce_report_recent_reviews_query_from_filter' ); /** * Function for `woocommerce_report_recent_reviews_query_from` filter-hook. * * @param $string * * @return */ function wp_kama_woocommerce_report_recent_reviews_query_from_filter( $string ){ // filter... return $string; }
- $string
- -
Where the hook is called
woocommerce_report_recent_reviews_query_from
woocommerce/includes/admin/class-wc-admin-dashboard.php 398-409
$query_from = apply_filters( 'woocommerce_report_recent_reviews_query_from', "FROM {$wpdb->comments} comments LEFT JOIN {$wpdb->posts} posts ON (comments.comment_post_ID = posts.ID) WHERE comments.comment_approved = '1' AND comments.comment_type = 'review' AND posts.post_password = '' AND posts.post_type = 'product' AND comments.comment_parent = 0 ORDER BY comments.comment_date_gmt DESC LIMIT 5" );