Display single product reviews (comments) This template can be overridden by copying it to yourtheme/woocommerce/single-product-reviews.php. HOWEVER, on occasion WooCommerce will need to update template files and you (the theme developer) will need to copy the new files to your theme to maintain compatibility. We try to do this as little as possible, but it does happen. When this occurs the version of the template file will be bumped and the readme will list any important changes.
Afficher les commentaires sur les produits (commentaires) Ce modèle peut être remplacé en le copiant dans yourtheme/woocommerce/single-product-reviews.php. CEPENDANT, il arrive que WooCommerce doive mettre à jour les fichiers du modèle et que vous (le développeur du thème) deviez copier les nouveaux fichiers dans votre thème pour maintenir la compatibilité. Nous essayons de le faire le moins possible, mais cela arrive. Lorsque cela se produit, la version du fichier de template sera augmentée et le readme listera les changements importants.
array( 'callback' => 'woocommerce_comments'
Sortie :
// Paramètres liste avis
add_filter('woocommerce_product_review_list_args', 'args_liste_avis');
function args_liste_avis($args) {
$args['reverse_top_level'] = true; // Plus récents en premier
$args['per_page'] = 10; // Nombre par page
return $args;
}
Chargement des actualités...