PluginProbe
Widget Post Slider / trunk
Widget Post Slider vtrunk
1.3.8 trunk 1.0 1.0.1 1.2 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7
widget-post-slider / widget-post-slider.php

widget-post-slider.php in Widget Post Slider trunk, at widget-post-slider.php

36 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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