-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwp-flickitize-galleries.php
43 lines (35 loc) · 1.48 KB
/
wp-flickitize-galleries.php
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
<?php
/*
Plugin Name: WP Flickitize Galleries
Plugin URI: [email protected]:zedejose/wp-flickitize-galleries.git
Description: Turn your native WordPress galleries into beautiful sliders. Powered by the <a href="https://flickity.metafizzy.co/">Flickity JS library</a>.
Version: 0.1
Author: Ze Fontainhas
License: GPL2
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp-flickitize-galleries
Domain Path: /languages
WP Flickitize Galleries is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
any later version.
WP Flickitize Galleries is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with WP Flickitize Galleries. If not, see <http://www.gnu.org/licenses/>.
*/
/* Exit if called directly */
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/* Define constants */
define( 'WP_FLICKITIZE_DIR', dirname( __FILE__ ) );
define( 'WP_FLICKITIZE_FILE', __FILE__ );
define( 'WP_FLICKITIZE_BASE', plugin_basename( __FILE__ ) );
define( 'WP_FLICKITIZE_MIN_WP', 4.6 );
define( 'WP_FLICKITIZE_MIN_PHP', 5.6 );
/* Inlcude plugin classes */
require_once 'inc/class-admin.php';
require_once 'inc/class-shortcode.php';