I’d like to verifiy my company store site without having to add yet another plugin.
I tried adding this code to the child functions.php but it’s not working (I replaced the verification id with some dummy text).
function etheme_add_gsc_meta_tag(){
if( ! is_home() || ! is_front_page() ) return;
#replace your meta tag below
echo '<meta name="google-site-verification" content="MYGSC-ID######" />';
}
add_action( 'wp_head', 'etheme_add_gsc_meta_tag' );
Can you help me? THANKS!