-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwpdoom.php
More file actions
23 lines (19 loc) · 806 Bytes
/
wpdoom.php
File metadata and controls
23 lines (19 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
* Plugin Name: WP Doom
* Description: WordPress, running Doom.
* Plugin URI: https://dwinrhys.com/2024/05/08/can-wordpress-run-doom-of-course-it-can-heres-how/?utm_source=plugin-link&utm_medium=plugin&utm_campaign=wp-doom
* Author: Dwi'n Rhys
* Author URI: https://dwinrhys.com/?utm_source=author-link&utm_medium=plugin&utm_campaign=wp-doom
* Version: 1.0
* License: GPL2 or later (not sure about JS-DOS or Doom Shareware, sorry!)
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: wpdoom
* Domain Path: Domain Path
* Network: false
*/
defined( 'ABSPATH' ) or exit;
define('WPDOOM_PLUGIN_VERSION', '1.0');
define('WPDOOM_PLUGIN_PATH',dirname(__FILE__));
define('WPDOOM_PLUGIN_URL',plugins_url('', __FILE__));
require_once WPDOOM_PLUGIN_PATH . '/inc/core.php';