Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1367675

    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

    #1367677

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.