-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutm-manager.php
More file actions
48 lines (43 loc) · 1.68 KB
/
utm-manager.php
File metadata and controls
48 lines (43 loc) · 1.68 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
<?php
/**
* Plugin Name: UTM Manager
* Plugin URI: https://beautifulplugins.com/utm-manager/
* Description: UTM Manager is a powerful and user-friendly WordPress plugin designed to help you efficiently track and manage UTM parameters across your website. With UTM Manager, you can effortlessly monitor the performance of your marketing campaigns, understand the source of your traffic, and gain valuable insights to optimize your strategies.
* Version: 1.3.2
* Requires at least: 5.0
* Requires PHP: 7.4
* Tested up to: 6.9
* Author: BeautifulPlugins
* Author URI: https://beautifulplugins.com
* License: GPL v2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: utm-manager
* Domain Path: /languages
*
* @package UTMManager
*
* UTM Manager is a 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 2 of the License, or
* any later version.
*
* UTM Manager 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.
*/
use UTMManager\Plugin;
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
// Autoload optimized classes.
require_once __DIR__ . '/vendor/autoload.php';
/**
* Get the plugin instance.
*
* @since 1.0.0
* @return Plugin The plugin instance.
*/
function utm_manager() {
return Plugin::create( __FILE__, '1.3.2' );
}
// Initialize the plugin.
utm_manager();