wp_template_enhancement_output_buffer_started

ACTION wp-includes\template.php (ligne 904) github
Fires when the template enhancement output buffer has started.

Paramètres

Entrée :
N/A
Sortie :
N/A

Utilisation

// Ajouter une fonction au hook action 'wp_template_enhancement_output_buffer_started'
add_action('wp_template_enhancement_output_buffer_started', 'ma_fonction_personnalisee', 10, 1);

function ma_fonction_personnalisee() {
    // Votre code ici
    error_log('Hook wp_template_enhancement_output_buffer_started déclenché');
}

Actualités

Chargement des actualités...