How to add cache image sizes to a theme
For convenience (because my server can't deal with thumbnail generation on the fly) I need a few additional cached thumbnails to be generated by the theme I am using (zpBootstrap).
At the moment I see a bunch of "registered" cached image generation options when I use cache manager including for theme Garland and plugin zenpages (etc).
I'm looking into the zpBootstrap theme code /zpBootstrap-master/themeoptions.php and there appears to be a proper initialization section
if (class_exists('cacheManager')) {
and call to register the sizes
cacheManager::addCacheSize($me, NULL, 1000, 500, 1000, 500, NULL, NULL, NULL, $img_wmk, $img_effect, false);
but I don't see this option when I use the cache manager.
Can you point me to what might be wrong?
(when I fix that I think I can figure out how to add the sizes I want to add)