Theme Blvd Image Sizes

plugin banner

When using a theme with Theme Blvd framework version 2.1+, this plugin is will allow to change your theme's image sizes.

Author:Jason Bobich (profile at wordpress.org)
WordPress version required:Theme Blvd
WordPress version tested:
Plugin version:1.1.1
Added to WordPress repository:02-02-2012
Last updated:07-09-2015
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:
Total downloads:8 877
Active installs:100+
plugin download
Click to start download

When using a theme with Theme Blvd Framework version 2.2+, this plugin allows you to change your theme's image sizes.

Who is this plugin for?

This plugin is mainly designed for non-developers who want to alter the image sizes for their Theme Blvd theme, but do not have the necessary development knowledge to manually make the changes from their child theme.

How does this plugin work?

As in any WordPress theme, we setup the image sizes by using WordPress's add_image_size function for each crop size. However, before these images are registered, the Theme Blvd framework applies a filter to an array of the sizes to be registered.

This allows for all of the image sizes of the theme to be easily filtered from your child theme or from a plugin... and this would be an example of a plugin that utilizes that. 🙂

Do I have to use this plugin to change image sizes?

Nope. In fact, if you understand the basics of PHP and the WordPress filters API, I would suggest that you do not use this plugin and instead, you manually make the changes from your child theme’s functions.php. Realistically, running this plugin requires extra resources on your server that can be avoided by just manually make the change you want from your child theme.

If you'd like to dive into a little development action, and accomplish the gist of what this plugin does, you'd simply do something like this from your child theme:

function my_image_sizes( $sizes ) {
    $sizes['slider-large'] = array(
        'width' => '960', // Your new width
        'height' => '350' // Your new height
    );
    return $sizes;
}
add_filter( 'themeblvd_image_sizes', 'my_image_sizes' );

Screenshots
ChangeLog