I need to add this:
<meta property="fb:page_id" content="311096778893453682" />
between the <head></head> tags in my child theme. How do I do that?
I need to add this:
<meta property="fb:page_id" content="311096778893453682" />
between the <head></head> tags in my child theme. How do I do that?
Try:
function add_to_my_head() { ?>
<!-- add your code here -->
<?php }
add_action('wp_head','add_to_my_head');This topic has been closed to new replies.