Shoora
10/19/2018 - 4:57 AM

Simplest Google analytics WordPress Plugin.

Simplest Google analytics WordPress Plugin.

<?PHP
/*
	Plugin Name: FMy - Place Google Analytics CODE in the footer
	Plugin URI: http://www.fayazmiraz.com/
	Description:  A Simple WordPress Plugin to Place site Google Analytics CODE in the footer
	Version: 1.1
	Author:  Fayaz Ahmed
	Author URI: http://www.fayazmiraz.com/
*/

function fmy_ga_to_footer() {
	// do it only when user not logged in, our own visits doesn't need to show on GA
	if( ! is_user_logged_in() ) {
		?>
		<!-- place your Google Analytics async CODE here (replace this line & include the script tag) -->
		<?php
	}
}
add_action( 'wp_footer', 'fmy_ga_to_footer' );