Greetings,
how do I add the meta tag to verify the domain of Facebook business account? Facebook tells me to add it in the head.
Thank you,
Manuela
Hey Manuela,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:
function add_custom_meta(){
?>
<meta name="facebook-domain-verification" content="-your-code-here">
<?php
}
add_action('wp_head', 'add_custom_meta', 1);
adjust the tag to match what they gave you.
Best regards,
Mike