Fires before rendering a Customizer panel.
$this
Sortie :
@param WP_Customize_Panel $panel WP_Customize_Panel instance.
// Ajouter une fonction au hook action 'customize_render_panel'
add_action('customize_render_panel', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee($this) {
// Votre code ici
error_log('Hook customize_render_panel déclenché');
}
Chargement des actualités...