at path:
ROOT
/
wp-content
/
plugins
/
whizzy
/
core
/
bootstrap.php
run:
R
W
Run
callbacks
DIR
2025-08-15 17:54:51
R
W
Run
classes
DIR
2025-08-15 17:54:51
R
W
Run
interfaces
DIR
2025-08-15 17:54:51
R
W
Run
shortcodes
DIR
2025-08-15 17:54:51
R
W
Run
templates
DIR
2025-08-15 17:54:51
R
W
Run
tests
DIR
2025-08-15 17:54:51
R
W
Run
views
DIR
2025-08-15 17:54:51
R
W
Run
.gitattributes
230 By
2025-08-15 17:54:51
R
W
Run
Delete
Rename
.gitignore
605 By
2025-08-15 17:54:51
R
W
Run
Delete
Rename
README.md
993 By
2025-08-15 17:54:51
R
W
Run
Delete
Rename
bootstrap.php
541 By
2025-08-15 17:54:51
R
W
Run
Delete
Rename
core.php
6.24 KB
2025-08-15 17:54:51
R
W
Run
Delete
Rename
defaults.php
930 By
2025-08-15 17:54:51
R
W
Run
Delete
Rename
helper-functions.php
1.72 KB
2025-08-15 17:54:51
R
W
Run
Delete
Rename
error_log
up
📄
bootstrap.php
Save
<?php defined( 'ABSPATH' ) or die; // ensure EXT is defined if ( ! defined( 'EXT' ) ) { define( 'EXT', '.php' ); } $basepath = dirname( __FILE__ ) . DIRECTORY_SEPARATOR; require $basepath . 'core.php'; // load classes $interfacepath = $basepath . 'interfaces' . DIRECTORY_SEPARATOR; whizzy::require_all( $interfacepath ); $classpath = $basepath . 'classes' . DIRECTORY_SEPARATOR; whizzy::require_all( $classpath ); // load callbacks $callbackpath = $basepath . 'callbacks' . DIRECTORY_SEPARATOR; whizzy::require_all( $callbackpath );