PluginProbe
WpStream – Live Streaming, Video on Demand, Pay Per View / 4.14.0
WpStream – Live Streaming, Video on Demand, Pay Per View v4.14.0
4.14.1 4.14.0 4.13.2 4.13.1 4.13 4.12.5 4.12.4 4.12.3 4.12.2 4.12.1 4.12 4.4.4 4.4.5 4.4.6 4.4.7 4.4.8 4.4.9 4.5 4.5.1 4.5.11 4.5.11.1 4.5.11.2 4.5.11.4 4.5.11.5 4.5.11.6 All 181 releases
wpstream / hello-wpstream / framework / options / main.php

main.php in WpStream – Live Streaming, Video on Demand, Pay Per View 4.14.0, at hello-wpstream/framework/options/main.php

21 lines 499 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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