forked from xunil154/simply-static
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simply-static.php
33 lines (27 loc) · 935 Bytes
/
simply-static.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 // Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Plugin Name: Simply Static
* Plugin URI: http://codeofconduct.co/simply-static
* Description: Produces a static HTML version of your WordPress install and adjusts URLs accordingly.
* Version: 1.8.1
* Author: Code of Conduct
* Author URI: http://codeofconduct.co/
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: simply-static
* Domain Path: /languages
*/
if ( ! defined( 'SIST_FILE' ) ) {
define( 'SIST_FILE', __FILE__ );
}
if ( ! defined( 'SIST_PATH' ) ) {
define( 'SIST_PATH', plugin_dir_path( SIST_FILE ) );
}
if ( ! defined( 'SIST_BASENAME' ) ) {
define( 'SIST_BASENAME', plugin_basename( SIST_FILE ) );
}
require plugin_dir_path( __FILE__ ) . 'includes/class-ss-plugin.php';
Simply_Static\Plugin::instance();