Hi,
I was wondering which is the easiest way to add a meta tag into the header section of my site.
I am using just the standard x theme, the meta tag is needed to verify my account for an affiliate site
Thanks
Hi,
I was wondering which is the easiest way to add a meta tag into the header section of my site.
I am using just the standard x theme, the meta tag is needed to verify my account for an affiliate site
Thanks
Hi There,
Thanks for writing in! First setup a child theme on your site and activate it (). Then you can add the following code into your child theme’s functions.php file.
add_action('wp_head', function(){?>
<!--- YOURE META HERE -START -->
<!--- YOURE META HERE -END -->
<?php });
Hope that helps.
so i paste that code underneath where it says
//Additional Fuctions
//==============================?
and does my meta teg completely replace
<— YOURE META HERE -START -->
<— YOURE META HERE -END -->
or go in between?
Thanks
Hi There,
You should add your code underneath that line.
Regards!