-
Notifications
You must be signed in to change notification settings - Fork 1
/
twpress.php
34 lines (30 loc) · 1.07 KB
/
twpress.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
<?php
/**
* Tailwind CSS Play CDN for WordPress
*
* @link https://oberonlai.blog
* @since 0.0.1
* @package TWP
*
* @wordpress-plugin
* Plugin Name: Tailwind CSS Play CDN for WordPress
* Plugin URI: https://oberonlai.blog
* Description: Use the Play CDN to try Tailwind right in the WordPress without any build step. The Play CDN is designed for development purposes only, and is not the best choice for production.
* Version: 0.0.1
* Author: Oberon Lai
* Author URI: https://oberonlai.blog
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: twp
* Domain Path: /languages
*/
defined( 'ABSPATH' ) || exit;
define( 'TWP_VERSION', '0.0.1' );
define( 'TWP_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'TWP_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'TWP_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
/**
* Autoload
*/
require_once TWP_PLUGIN_DIR . 'vendor/autoload.php';
\A7\autoload( TWP_PLUGIN_DIR . 'src' );