| <?php | |
| /* | |
| * Plugin Name: Google Analitika | |
| * Version: 1.0 | |
| * Plugin URI: http://www.ubuntu.si | |
| * Description: Doda analitiko za ubuntu.si | |
| * Author: dz0ny | |
| */ | |
| class GoogleAnalitika { | |
| function GoogleAnalitika() | |
| { | |
| add_action( 'wp_head', array(&$this, 'inject_js'), 999999); | |
| add_action( 'login_head', array(&$this, 'inject_js'), 999999); | |
| } | |
| function inject_js() | |
| { | |
| ?> | |
| <script type="text/javascript"> | |
| var _gaq = _gaq || []; | |
| _gaq.push(['_setAccount', 'UA-XXXXX-Y']); | |
| _gaq.push(['_trackPageview']); | |
| (function() { | |
| var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | |
| ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | |
| var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); | |
| })(); | |
| </script> | |
| <?php | |
| } | |
| } | |
| add_action('init', create_function('', 'return new GoogleAnalitika();')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
dz0ny commentedNov 29, 2012
add_action("init", "GoogleAnalitikaSpawn");
function GoogleAnalitikaSpawn() {
global $GoogleAnalitikaV; $GoogleAnalitikaV = new GoogleAnalitika ();
}