wordpress-popular-posts
Last commit date
assets
2 years ago
i18n
2 years ago
src
2 years ago
vendor
2 years ago
LICENSE
2 years ago
index.php
2 years ago
readme.txt
2 years ago
uninstall.php
2 years ago
wordpress-popular-posts.php
2 years ago
wordpress-popular-posts.php
39 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * The plugin bootstrap file |
| 5 | * |
| 6 | * This file is read by WordPress to generate the plugin information in the plugin |
| 7 | * admin area. This file also includes all of the dependencies used by the plugin, |
| 8 | * registers the activation and deactivation functions, and defines a function |
| 9 | * that starts the plugin. |
| 10 | * |
| 11 | * @link https://cabrerahector.com/ |
| 12 | * @since 4.0.0 |
| 13 | * @package WordPressPopularPosts |
| 14 | * |
| 15 | * @wordpress-plugin |
| 16 | * Plugin Name: WordPress Popular Posts |
| 17 | * Plugin URI: https://wordpress.org/plugins/wordpress-popular-posts/ |
| 18 | * Description: A highly customizable widget that displays the most popular posts on your blog. |
| 19 | * Version: 6.3.4 |
| 20 | * Requires at least: 5.3 |
| 21 | * Requires PHP: 7.2 |
| 22 | * Author: Hector Cabrera |
| 23 | * Author URI: https://cabrerahector.com/ |
| 24 | * License: GPL-2.0+ |
| 25 | * License URI: http://www.gnu.org/licenses/gpl-2.0.txt |
| 26 | * Text Domain: wordpress-popular-posts |
| 27 | * Domain Path: /languages |
| 28 | */ |
| 29 | |
| 30 | if ( ! defined( 'WPINC' ) ) { |
| 31 | die(); |
| 32 | } |
| 33 | |
| 34 | define('WPP_VERSION', '6.3.4'); |
| 35 | |
| 36 | $wpp_main_plugin_file = __FILE__; |
| 37 | // Load plugin bootstrap |
| 38 | require __DIR__ . '/src/Bootstrap.php'; |
| 39 |