Last active
May 28, 2017 17:19
-
-
Save travispflanz/702fc770009eeac1a4db61ec4c6c09ee 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 Facebook Analytics for users who are not admins | |
global $current_user; | |
if ( ! $current_user->role[0]='administrator' ) { | |
function webworks_facebook_analytics(){ | |
?> | |
<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 | |
} | |
add_action('wp_head', 'webworks_facebook_analytics'); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment