Can anyone who successfully used this framework help me? Redux states that it utilizes a global variable for referencing all of the saved options in the database.
My goal is to access these stored options, so I can figure out how to call them.
Admittedly, I am new to using options panel frameworks. There is another similar question at: redux framework wordpress calling variable. I can't figure out using the documentation how this is done.
Here is the documentation for the framework: http://plovs.github.io/Redux-Framework-Docs/docs.html
What am I missing? The section/field arrays look like this:
$sections[] = array(
'title' => __('Home Settings', 'redux-framework-demo'),
'desc' => __('Here, you can change any of the many options bundled with samTheme', 'redux-framework-demo'),
'icon' => 'el-icon-home',
// 'submenu' => false, // Setting submenu to false on a given section will hide it from the WordPress sidebar menu!
'fields' => array(
array(
'id'=>'webFonts',
'type' => 'media',
'title' => __('Web Fonts', 'redux-framework-demo'),
'compiler' => 'true',
'mode' => false, // Can be set to false to allow any media type, or can also be set to any mime type.
'desc'=> __('Basic media uploader with disabled URL input field.', 'redux-framework-demo'),
'subtitle' => __('Upload any media using the WordPress native uploader', 'redux-framework-demo'),
),
The $sections[] array id is generic in name. The arrays are generic in name. I'm assuming these can be referenced by id? This is ultra confusing. If I'm missing something ridiculous here, I apologise in advance. I'm completely new to this framework.