forked from uprise10/google-analytics-for-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoogleanalytics.php
More file actions
49 lines (38 loc) · 1.76 KB
/
googleanalytics.php
File metadata and controls
49 lines (38 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/*
Plugin Name: Google Analytics by Yoast
Plugin URI: https://yoast.com/wordpress/plugins/google-analytics/#utm_source=wordpress&utm_medium=plugin&utm_campaign=wpgaplugin&utm_content=v504
Description: This plugin makes it simple to add Google Analytics to your WordPress blog, adding lots of features, eg. error page, search result and automatic clickout and download tracking.
Author: Team Yoast
Version: 5.0.6
Requires at least: 3.8
Author URI: https://yoast.com/
License: GPL v3
Text Domain: google-analytics-for-wordpress
Domain Path: /languages
Google Analytics for WordPress
Copyright (C) 2008-2014, Joost de Valk - joost@yoast.com
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// This plugin was originally based on Rich Boakes' Analytics plugin: http://boakes.org/analytics, but has since been rewritten and refactored multiple times.
define( 'GAWP_VERSION', '5.0.6' );
define( 'GAWP_FILE', __FILE__ );
define( 'GAWP_URL', trailingslashit( plugin_dir_url( __FILE__ ) ) );
if ( ! class_exists( 'Yoast_GA_Options' ) ) {
require_once 'includes/class-options.php';
}
// Only require the needed classes
if ( is_admin() ) {
require_once 'admin/class-admin.php';
} else {
require_once 'frontend/class-frontend.php';
}