woocommerce_product_reviews_pending_count
Provides an opportunity to alter the pending comment count used within the product reviews admin list table.
Использование
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(массив)
- Current count of comments pending review.
Список изменений
С версии 7.0.0 | Введена. |
Где вызывается хук
woocommerce_product_reviews_pending_count
woocommerce/src/Internal/Admin/ProductReviews/Reviews.php 486
$count = apply_filters( 'woocommerce_product_reviews_pending_count', $count );