mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
18 lines
492 B
PHP
18 lines
492 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Plugin Name: WP Statistics
|
||
|
* Plugin URI: https://wp-statistics.com/
|
||
|
* Description: Complete WordPress Analytics and Statistics for your site!
|
||
|
* Version: 12.6.13
|
||
|
* Author: VeronaLabs
|
||
|
* Author URI: http://veronalabs.com/
|
||
|
* Text Domain: wp-statistics
|
||
|
* Domain Path: languages
|
||
|
*/
|
||
|
|
||
|
define( 'WP_STATISTICS_MAIN_FILE', __FILE__ );
|
||
|
require_once plugin_dir_path( __FILE__ ) . 'includes/classes/class-wp-statistics.php';
|
||
|
|
||
|
$WP_Statistics = new WP_Statistics;
|
||
|
$WP_Statistics->run();
|