
Now when you added custom Page/Post/Archive templates (thank you for this, very unique), can you add for images in those templates to use custom image sizes (Wordpress).
Even beginners now can easy make own custom image sizes in Wordpress, there are plenty of simple plugins for that.
So for instance if our custom image size is named: thumbnail-footer or post-view-top-image to have one option in custom template, image settings, for this ?
Just make Themler scripts aware to change this:
- theme_get_post_thumbnail(array('size' => 'full', 'imageClass' => ' bd-imagestyles', 'class' => ' bd-postimage-18'))
to this:
- theme_get_post_thumbnail(array('size' => 'thumbnail-footer', 'imageClass' => ' bd-imagestyles', 'class' => ' bd-postimage-18'))
I know we can resize them via CSS options in Themler, but this is so outdated today and wrong.
It is very easy even for WP beginners. Those plugins are so easy to use for making custom image sizes and naming them as you need.
I agree it is easy even to change in Themler PHP code after. But as you see Themler scripts dont have to make complex PHP code calculations, just switch one word with other we put in some settings field for images.
Now when you added custom Page/Post/Archive templates (thank you for this, very unique), can you add for images in those templates to use custom image sizes (Wordpress). Even beginners now can easy make own custom image sizes in Wordpress, there are plenty of simple plugins for that. So for instance if our custom image size is named: **thumbnail-footer** or **post-view-top-image** to have one option in custom template, image settings, for this ? Just make Themler scripts aware to change this: - theme_get_post_thumbnail(array('size' => **'full'**, 'imageClass' => ' bd-imagestyles', 'class' => ' bd-postimage-18')) to this: - theme_get_post_thumbnail(array('size' => **'thumbnail-footer'**, 'imageClass' => ' bd-imagestyles', 'class' => ' bd-postimage-18')) I know we can resize them via CSS options in Themler, but this is so outdated today and wrong. It is very easy even for WP beginners. Those plugins are so easy to use for making custom image sizes and naming them as you need. I agree it is easy even to change in Themler PHP code after. But as you see Themler scripts dont have to make complex PHP code calculations, just switch one word with other we put in some settings field for images.