Fires after the site options are updated.
$id
Sortie :
@param int $id The ID of the site being updated.
// Ajouter une fonction au hook action 'wpmu_update_blog_options'
add_action('wpmu_update_blog_options', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee($id) {
// Votre code ici
error_log('Hook wpmu_update_blog_options déclenché');
}
Chargement des actualités...