Hook – Ajouter du code html à WordPress en utilisant le crochet wp_head

logo carre@4x
function insert_html_in_header() {
    echo '<<< votre message ou votre code html >>>';
}
/* Tableau de bord administrateur */
add_action( 'admin_head', 'insert_html_in_header' );
/* Interface utilisateur */
add_action( 'wp_head', 'insert_html_in_header' );
Posted in Uncategorized