woocommerce_product_reviews_pending_count
Provides an opportunity to alter the pending comment count used within the product reviews admin list table.
Usage
add_filter( 'woocommerce_product_reviews_pending_count', 'wp_kama_woocommerce_product_reviews_pending_count_filter' );
/**
* Function for `woocommerce_product_reviews_pending_count` filter-hook.
*
* @param array $count Current count of comments pending review.
*
* @return array
*/
function wp_kama_woocommerce_product_reviews_pending_count_filter( $count ){
// filter...
return $count;
}
- $count(array)
- Current count of comments pending review.
Changelog
| Since 7.0.0 | Introduced. |
Where the hook is called
woocommerce_product_reviews_pending_count
woocommerce/src/Internal/Admin/ProductReviews/Reviews.php 501
$count = apply_filters( 'woocommerce_product_reviews_pending_count', $count );