| 1 |
<?php |
| 2 |
/** |
| 3 |
* Widget Post Slider |
| 4 |
* |
| 5 |
* @since 1.3.3 |
| 6 |
* @package Widget_Post_Slider |
| 7 |
* |
| 8 |
* @wordpress-plugin |
| 9 |
* Plugin Name: Widget Post Slider |
| 10 |
* Plugin URI: https://wordpress.org/plugins/widget-post-slider/ |
| 11 |
* Description: Widget Post Slider to display posts image in a slider from category. |
| 12 |
* Version: 1.3.8 |
| 13 |
* Requires at least: 5.8 |
| 14 |
* Requires PHP: 7.4 |
| 15 |
* Author: ShapedPlugin |
| 16 |
* Author URI: https://shapedplugin.com/ |
| 17 |
* License: GPL-2.0+ |
| 18 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt |
| 19 |
* Text Domain: widget-post-slider |
| 20 |
* Domain Path: /languages |
| 21 |
*/ |
| 22 |
|
| 23 |
if ( ! defined( 'ABSPATH' ) ) { |
| 24 |
exit; // Exit if accessed directly. |
| 25 |
} |
| 26 |
|
| 27 |
/** |
| 28 |
* Define constants. |
| 29 |
*/ |
| 30 |
define( 'WIDGET_POST_SLIDER_VERSION', '1.3.8' ); |
| 31 |
define( 'WIDGET_POST_SLIDER_URL', plugin_dir_url( __FILE__ ) ); |
| 32 |
define( 'WIDGET_POST_SLIDER_PATH', plugin_dir_path( __FILE__ ) ); |
| 33 |
|
| 34 |
require_once WIDGET_POST_SLIDER_PATH . 'inc/scripts.php'; |
| 35 |
require_once WIDGET_POST_SLIDER_PATH . 'inc/functions.php'; |
| 36 |
|