As the title says...
I looked through the docs for Plugin Architecture and saw the options['note']. Also looked at the Theming Tutorial. Didn't see anything that would allow a theme to force a plugin to be enabled.
If there isn't such a thing, I'm guessing there's a good reason for it, right? ;-)
Thanks,
...jim
Comments
You can also use the `setOption('zp_plugin_'.$pluginName,$priority, false)` to temporarily enable a plugin for the duration of a HTML page rendering. $priority should be the value the plugin sets in the variable `$plugin_is_filter` variable.
BTW, this variant of setOption allows you to set any option temporarily.
Of course a custom plugin could be made to enable the other plugins or the theme option initialization could permanently enable the plugin. But with the latter there is no guarantee that the user would not disable it later.
If what you are building is really specific to your theme perhaps it would be better to make it part of the theme scripts and/or the theme's `functions.php` script.
...jim