mirror of
https://github.com/KevinMidboe/rohnenedre.git
synced 2026-01-28 04:06:19 +00:00
Initial commit. State 04.2021.
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
// Load the TGM init if it exists
|
||||
if (file_exists(dirname(__FILE__).'/tgm/tgm-init.php')) {
|
||||
require_once( dirname(__FILE__).'/tgm/tgm-init.php' );
|
||||
}
|
||||
// Load Redux extensions - MUST be loaded before your options are set
|
||||
if (file_exists(dirname(__FILE__).'/redux-extensions/extensions-init.php')) {
|
||||
require_once( dirname(__FILE__).'/redux-extensions/extensions-init.php' );
|
||||
}
|
||||
// Load the embedded Redux Framework
|
||||
if (file_exists(dirname(__FILE__).'/redux-framework/ReduxCore/framework.php')) {
|
||||
require_once( dirname(__FILE__).'/redux-framework/ReduxCore/framework.php' );
|
||||
}
|
||||
// Load the theme/plugin options
|
||||
if (file_exists(dirname(__FILE__).'/options-init.php')) {
|
||||
require_once( dirname(__FILE__).'/options-init.php' );
|
||||
}
|
||||
Reference in New Issue
Block a user