PluginProbe
Metricool – Social media and site statistics / 2.0.2
Metricool – Social media and site statistics v2.0.2
2.1.0 2.0.2 2.0.1 2.0.0 1.27 trunk
metricool / metricool.php

metricool.php in Metricool – Social media and site statistics 2.0.2, at metricool.php

36 lines 954 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * @package Metricool
5 * @author Really Simple Plugins
6 * @copyright 2026 Really Simple Plugins
7 * @license GPL-2.0-or-later
8 *
9 * @wordpress-plugin
10 * Plugin Name: Metricool - Social media and site statistics
11 * Plugin URI: https://metricool.com/
12 * Description: Site metrics and social media analytics for Instagram, Facebook, YouTube, LinkedIn, X Twitter. The single best tool for Social Media Managers!
13 * Version: 2.0.2
14 * Requires at least: 6.6
15 * Requires PHP: 7.4
16 * Author: Really Simple Plugins
17 * Author URI: https://really-simple-plugins.com
18 * License: GPL v2 or later
19 * Text Domain: metricool
20 * Domain Path: /assets/languages
21 */
22
23 if (!defined('ABSPATH')) {
24 exit;
25 }
26
27 /**
28 * Load the Jetpack packages autoloader.
29 * @see https://packagist.org/packages/automattic/jetpack-autoloader
30 */
31 require_once __DIR__ . '/vendor/autoload_packages.php';
32
33 // Boot the plugin.
34 $plugin = new Metricool\Bootstrap\Plugin();
35 $plugin->boot();
36