forked from wp-media/template-loader-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.php
More file actions
21 lines (18 loc) · 661 Bytes
/
plugin.php
File metadata and controls
21 lines (18 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
* Plugin Name: WP Media | Template Loader plugin.
* Description: A WordPress plugin to loading specific page templates regardless of theme.
* Plugin URI: https://github.com/wp-media/template-loader-plugin
* Version: 1.0.0
* Author: WP Rocket PHP Engineering Team
* Author URI: https://wp-rocket.me
* License: GNU General Public License v2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
*
* Copyright 2020 WP Media <support@wp-rocket.me>
*/
defined( 'ABSPATH' ) || die();
require_once 'functions.php';
require_once 'Loader.php';
require_once 'MetaBox.php';
add_action( 'plugins_loaded', 'wp_media_template_loader' );