mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-23 00:01:07 +00:00
18 lines
508 B
PHP
18 lines
508 B
PHP
<?php
|
|
/**
|
|
* Plugin Name: WP Statistics
|
|
* Plugin URI: https://wp-statistics.com/
|
|
* Description: Complete WordPress Analytics and Statistics for your site!
|
|
* Version: 12.3.5
|
|
* Author: Verona Labs
|
|
* Author URI: http://veronalabs.com/
|
|
*
|
|
* Text Domain: wp-statistics
|
|
* Domain Path: /languages/
|
|
*/
|
|
|
|
define( 'WP_STATISTICS_MAIN_FILE', __FILE__ );
|
|
require plugin_dir_path( __FILE__ ) . 'includes/classes/class-wp-statistics.php';
|
|
|
|
$WP_Statistics = new WP_Statistics;
|
|
$WP_Statistics->run(); |