Filter whether a product review is trashable. Return false to disable trash support for the product review.
( EMPTY_TRASH_DAYS > 0
Sortie :
@param boolean $supports_trash Whether the object supports trashing. @param WP_Post $product_review The object being considered for trashing support.
// Modifier la valeur avec le filtre 'rest_product_review_trashable'
add_filter('rest_product_review_trashable', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre(( EMPTY_TRASH_DAYS > 0) {
// Modifier la valeur
return ( EMPTY_TRASH_DAYS > 0;
}
Chargement des actualités...