-
Notifications
You must be signed in to change notification settings - Fork 0
/
mm-gsap.php
33 lines (29 loc) · 1005 Bytes
/
mm-gsap.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
<?php
/**
* Plugin Name: MM GSAP
* Plugin URI: https://minimamente.com
* Description: Inclusione di custom CSS, JS e animazioni GSAP
* Version: 1.0.1
* Author: miniMAC
* Author URI: https://minimamente.com
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: mm
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
// Definizioni
define('MM_GSAP_VERSION', '1.0.1');
define('MM_GSAP_SLUG', 'mm-gsap');
define('MM_GSAP_PLUGIN', 75);
/**
* Includo files
*/
require_once plugin_dir_path( __FILE__ ) . 'inc/update.php';
require_once plugin_dir_path( __FILE__ ) . 'inc/enqueue.php';
require_once plugin_dir_path( __FILE__ ) . 'inc/opzioni.php';
require_once plugin_dir_path( __FILE__ ) . 'inc/funzioni.php';
require_once plugin_dir_path( __FILE__ ) . 'inc/endpoint.php';
require_once plugin_dir_path( __FILE__ ) . 'inc/kadence-gsap-scroll-containers.php';