add code before the closing
-
I want to add this snippet of code before the closing </head>.
How do I do this? Thanks.
<meta name=”p:domain_verify” content=”add551991282887361728df9bf830974″/>
Hello,
The below code will help you to add this meta to the head
tag, please paste it to the functions.php
file in your child theme.
add_action(
'wp_head',
function() {
echo '<meta name="p:domain_verify" content="add551991282887361728df9bf830974"/>';
}
);
You can also reach out to us if you have any questions.
Kind Regards
Thank you! It worked. š
You are welcome.
In case you need any additional help, Iād be more than happy to assist you.
Wish you all the best.
Kind Regards
The topic ‘add code before the closing’ is closed to new replies.