I am running a brother site of my main site. To reduce administration I am using for both the same plugins and themes.
For the theme options, I needed different colors (was able to do specific options by SCSS includes) and logos. Easy.
But when it comes to the qa-theme.php I am a bit stuck.
It seems that I cannot include('custom-file.php'); in the class qa_html_theme extends qa_html_theme_base {...} to access those variables (options) globally.
It seems that I can do so only in the functions(), which requires several includes of several files.
Is there any other option?
PS: Unfortunately, there is no way to define "custom fields" for the theme. And I do not want to create a separate plugin for each theme. It just doesnt feel right.