-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap.php
More file actions
29 lines (25 loc) · 798 Bytes
/
bootstrap.php
File metadata and controls
29 lines (25 loc) · 798 Bytes
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
<?php
/**
* Starter WordPress Plugin
*
* @package KnowTheCode\SandboxWorkspace
* @author hellofromTonya
* @license GPL-2.0+
*
* @wordpress-plugin
* Plugin Name: Sandbox Workspace WordPress Plugin
* Plugin URI: https://knowthecode.io/
* Description: This plugin gives you a workspace to write code, test it, and learn. This is your playground.
* Version: 1.0.0
* Author: hellofromTonya
* Author URI: https://knowthecode.io
* Text Domain: sandbox
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
*/
namespace KnowTheCode\SandboxWorkspace;
if ( ! defined( 'ABSPATH' ) ) {
exit( 'Cheatin’ uh?' );
}
define( 'SANDBOX_WORKSPACE_URL', plugin_dir_url( __FILE__ ) );
require_once( __DIR__. '/src/support/load-assets.php' );