Determines how many revisions to retain for a given post. By default, an infinite number of revisions are kept. The constant WP_POST_REVISIONS can be set in wp-config to specify the limit of revisions to keep.
$post
Sortie :
@param WP_Post $post The post object. @return int The number of revisions to keep.
// Utilisation de la fonction wp_revisions_to_keep
$result = wp_revisions_to_keep($post);
if ($result) {
// Votre logique ici
}
Chargement des actualités...