woocommerce_product_reviews_pending_count

woocommerce_product_reviews_pending_count

Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_product_reviews_pending_count') is found 1 times:

  • /src/Internal/Admin/ProductReviews/Reviews.php line 487
    		 * @since 7.0.0
    		 *
    		 * @param array $count Current count of comments pending review.
    		 */
    		$count = apply_filters( 'woocommerce_product_reviews_pending_count', $count );
    
    		if ( empty( $count ) ) {
    			return '';
    		}
    
    		return ' <span class="awaiting-mod count-' . esc_attr( $count ) . '"><span class="pending-count">' . esc_html( $count ) . '</span></span>';