Update the schema for the given table
$updated_table, $table
Sortie :
@param string $table The name of the table to update. @return void
// Ajouter une fonction au hook action 'action_scheduler/created_table'
add_action('action_scheduler/created_table', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee($updated_table, $table) {
// Votre code ici
error_log('Hook action_scheduler/created_table déclenché');
}
Chargement des actualités...