Existe-t-il une fonction, une action ou un filtre WP dédié à utiliser lors de l'ajout / de la modification des en-têtes HTTP?
Pour l'instant je connecte juste un appel PHP header () au hook WP 'init' comme ceci:
add_action('init', 'add_header_xua');
function add_header_xua(){
if(!is_admin()){
header('X-UA-Compatible: IE=edge,chrome=1');
}
}
Mais est-ce la bonne façon de procéder?