mirror of
https://github.com/KevinMidboe/rohnenedre.git
synced 2026-01-10 19:35:47 +00:00
19 lines
747 B
PHP
19 lines
747 B
PHP
<?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' );
|
|
}
|