Per a inserir el codi de Google Analytics, el de Search Console o altres com els Geo Tags, Favicons… una de les solucions és ficar aquest codi en el header.php d’un tema fill. Però hi ha altra millor opció, i és ficar-ho mitjançant el funcions.php. Així, si hi ha algun canvi gran al header.php del tema pare, no afectarà, ja que no caldrà utilitzar aquest fitxer en el tema fill.
Per a fer-ho, únicament cal inserir aquest codi:
add_action('wp_head', 'nomfuncio_Header');
function nomfuncio_Header(){
?>
CODI DE GOOGLE ANALYTICS
CODI DE SEARCH CONSOLE
CODI DE GEO TAGS ETCÈTERA
<?php
};
Si el que volem és inserir codi en el footer, podem fer servir aquest:
add_action('wp_footer', 'nomfuncio_Footer');
function nomfuncio_Footer(){ ?>
CODIS PER AL FOOTER
<?php };