-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdisplay-posts-slider.php
More file actions
53 lines (48 loc) · 1.16 KB
/
display-posts-slider.php
File metadata and controls
53 lines (48 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/**
* Main Plugin File
*
* @package display-posts-slider
*
* @since 1.0.0
* @version 1.0.0
*
* Plugin Name: Display Posts Slider
* Plugin URI: https://lazlo.in/plugins/display-posts-slider/
* Description: Plugin to add custom shortcode to get the your posts in a beautiful slider.
* Version: 1.0.0
* Requires at least: 5.2
* Requires PHP: 7.2
* Author: Shubham Gupta
* Author URI: https://lazlo.in/
* License: GPL v2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Update URI: https://lazlo.in/my-plugin/
* Text Domain: display-posts-slider
* Domain Path: /languages
*/
defined( 'ABSPATH' ) || exit;
/**
* Plugin's file path
*
* @since 0.1.0
*/
define( 'DPS_PATH', trailingslashit( plugin_dir_path( __FILE__ ) ) );
/**
* Plugin's url path
*
* @since 0.1.0
*/
define( 'DPS_URL', trailingslashit( plugin_dir_url( __FILE__ ) ) );
/**
* The current version
*
* @since 0.1.0
*/
define( 'DPS_VERSION', '1.0.0' );
/**
* Includes the main functionality file.
*
* @since 1.0.0
*/
require_once DPS_PATH . 'includes/class-display-posts.php';