forked from tumult/hype-wordpress-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhypeanimations.php
More file actions
24 lines (24 loc) · 945 Bytes
/
hypeanimations.php
File metadata and controls
24 lines (24 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
/*
Plugin Name: Tumult Hype Animations
Version: 1.9
Description: Easily embed your Tumult Hype animations using a shortcode into posts and pages.
Plugin URI: https://forums.tumult.com/t/hype-animations-wordpress-plugin/11074
Author URI: <a href="https://tumult.com" target="_blank">Tumult</a>
Text Domain: hype-animations
Domain Path: /languages
License: GPL2
License URL: https://www.gnu.org/licenses/gpl-2.0.html
*/
#---------------------------------------------------------------------------#
add_action( 'plugins_loaded', 'hypeanimations_init_lang' );
function hypeanimations_init_lang() {
load_plugin_textdomain( 'hype-animations', false, basename( dirname( __FILE__ ) ) . '/languages/' );
}
include('includes/variables.php');
include('includes/init.php');
include('includes/functions.php');
include('includes/adminpanel.php');
include('includes/shortcode.php');
include('includes/iframe.php');
include('includes/tinymcetool.php');