Skip to content

Instantly share code, notes, and snippets.

@kristarella
Last active October 7, 2015 12:48
Show Gist options
  • Save kristarella/3167684 to your computer and use it in GitHub Desktop.
Save kristarella/3167684 to your computer and use it in GitHub Desktop.
Add Facebook XFBML to WordPress theme HTML
<?php
function fb_xfbml_js() {
?>
<div id="fb-root"></div>
<script>
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}
(document, 'script', 'facebook-jssdk'));
</script>
<?php
}
add_action('wp_head','fb_xfbml_js',1);
function add_fb_xml_ns($content) {
return ' xmlns:fb="http://ogp.me/ns/fb#" ' . $content;
}
add_filter('language_attributes', 'add_fb_xml_ns');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment