
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
/*
Plugin Name: PRESSO Theme Options Panel
Plugin URI: http://themeforest.net/user/envirra/portfolio?ref=envirra
Description: Theme options panel for Envirra Theme.
Version: 1.0.0
Author: Envirra
Author URI: http://themeforest.net/user/envirra/portfolio?ref=envirra
*/

if ( ! function_exists( 'presso_load_theme_options_panel' ) ) {
	function presso_load_theme_options_panel() {
		// Load ReduxFramework for Theme Options Panel
		if ( ! class_exists( 'ReduxFramework' ) ) {
			require_once 'redux-framework/redux-framework.php';
		}

		// Load ACF for Post/Page Options Panel
		if( ! class_exists( 'acf_field_sidebar_selector_plugin' ) ) {
			require_once 'acf-sidebar-selector-field/acf-sidebar_selector.php';
		}
		
		if ( ! class_exists( 'acf' ) ) {
			require_once 'advanced-custom-fields-pro/acf.php';
		}
	}
}
