-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathhypeanimations.php
More file actions
27 lines (25 loc) · 1.12 KB
/
hypeanimations.php
File metadata and controls
27 lines (25 loc) · 1.12 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
<?php
/*
Plugin Name: Tumult Hype Animations
Version: 1.9.18
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: tumult-hype-animations
Domain Path: /languages
License: GPL2
License URL: https://www.gnu.org/licenses/gpl-2.0.html
*/
#---------------------------------------------------------------------------#
add_action('init', 'hypeanimations_init_textdomain');
function hypeanimations_init_textdomain() {
load_plugin_textdomain( 'tumult-hype-animations', false, basename( dirname( __FILE__ ) ) . '/languages/' );
}
// Development helper: allow forcing a translations reload when visiting plugin admin pages. To use, uncomment the line below and add &reload_translations=1 to the URL
// include('includes/reload-translations.php');
include('includes/init.php');
include('includes/variables.php');
include('includes/functions.php');
include('includes/adminpanel.php');
include('includes/shortcode.php');
include('includes/iframe.php');