Provides an opportunity to alter the pending comment count used within the product reviews admin list table.
$count
Sortie :
@param array $count Current count of comments pending review.
// Modifier la valeur avec le filtre 'woocommerce_product_reviews_pending_count'
add_filter('woocommerce_product_reviews_pending_count', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($count) {
// Modifier la valeur
return $count;
}
Chargement des actualités...