| 1 |
<?php |
| 2 |
/** |
| 3 |
* Main |
| 4 |
* |
| 5 |
* Entry point that loads the individual Redux options sections for the theme. |
| 6 |
* Currently pulls in the "General" section; add further require_once lines here |
| 7 |
* as more option sections are introduced. |
| 8 |
* |
| 9 |
* @package wpstream-theme |
| 10 |
*/ |
| 11 |
|
| 12 |
|
| 13 |
// Exit if accessed directly. |
| 14 |
if ( ! defined( 'ABSPATH' ) ) { |
| 15 |
exit; |
| 16 |
} |
| 17 |
|
| 18 |
// Require options general. |
| 19 |
// Load the General options section from the active theme directory. |
| 20 |
require_once get_theme_file_path( '/framework/options/general.php' ); |
| 21 |
|