Forked from travispflanz/add Facebook Analytics for non-admins
Last active
May 31, 2017 17:09
-
-
Save georgejipa/3adc8a192e4f3a6ee3e97fec9804b2be to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action('wp_head', 'webworks_facebook_analytics'); | |
function webworks_facebook_analytics() { | |
if(current_user_can('manage_options')) { | |
return; | |
} | |
?> | |
<script> | |
window.fbAsyncInit = function() { | |
FB.init({ | |
appId : '228785407629856', | |
xfbml : true, | |
version : 'v2.8' | |
}); | |
FB.AppEvents.logPageView(); | |
}; | |
(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/sdk.js"; | |
fjs.parentNode.insertBefore(js, fjs); | |
}(document, 'script', 'facebook-jssdk')); | |
</script> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment