Filters whether to enable maintenance mode. This filter runs before it can be used by plugins. It is designed for non-web runtimes. If this filter returns true, maintenance mode will be active and the request will end. If false, the request will be allowed to continue processing even if maintenance mode should be active.
true, $upgrading
Sortie :
@param bool $enable_checks Whether to enable maintenance mode. Default true. @param int $upgrading The timestamp set in the .maintenance file.
// Modifier la valeur avec le filtre 'enable_maintenance_mode'
add_filter('enable_maintenance_mode', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre(true) {
// Modifier la valeur
return true;
}
Chargement des actualités...