Using the get_option() function to retrieve custom theme options seems to only work when placing
$options = get_option('plugin_options');
within index.php , yet all my references for using the settings api seem to place it above the doctype within header.php yet this fails.
It simple doesn't echo anything.
If placed above doctype within header.php print_r works and can access the array. It seems $options is only accessible within the template file it's defined.
