[oik] plugins.com

WordPress plugins and themes

  • Home
  • About
    • lazy shortcodes
    • smart shortcodes
    • oik base plugin
      • oik – donate
      • oik PayPal buttons
      • oik installation
      • oik Button Shortcode button
      • oik changelog
      • oik FAQ
      • oik plugins on SVN
      • oik plugins on GitHub
  • Plugins
    • oik base plugin
    • FREE oik plugins
    • WordPress plugins
    • Premium oik plugins
    • Bespoke oik plugins
  • Shortcodes
    • Shortcode examples
  • Blocks
    • Block examples
  • APIs
    • ALL action and filter hooks
  • Blog

bw_force_size() – Force the thumbnail size to be what we asked for

You appear to be a bot. Output may be restricted

Description

Force the thumbnail size to be what we asked for

wp_attachment_get_image_src() can sometimes attempt to return a $thumbnail where the width and height don't match what we asked for. The values of $thumbnail[1] and $thumbnail[2] are used to set the width and height values on the <img> tag We choose to reset these to the values first thought of. Note: The side effect of this is that the images get reshaped rather than being cropped. It's up to the web designer to set the sizes for thumbnail, small, medium and large and/or upload images that will scale nicely for the chosen figures.

  1. /05/08 When either the required width or height is set to 0 then the size of the image is set by scaling, maintaining the aspect ratio
  2. In the shortcode this can be specified using thumb=0xnn to set the height or thumb=nnx0 to set the width. Set the height when you want the images laid out in a row, and the width when you want them in a column. When the $size is NOT an array then we do not attempt to force the size, allowing the images to display responsively.

    Usage

    bw_force_size( $thumbnail, $size );

    Parameters

    $thumbnail
    ( mixed ) required –
    $size
    ( mixed ) required –

    Returns

    void

    Source

    File name: oik/includes/bw_images.inc
    Lines:
    1 to 12 of 12
    function bw_force_size( $thumbnail, $size ) {
      if ( is_array( $size ) ) {
        $aw = $thumbnail[1];
        $ah = $thumbnail[2];
        $thumbnail[1] = _bw_new_width( $aw, $ah, $size[0], $size[1] );
        $thumbnail[2] = _bw_new_height( $aw, $ah, $size[0], $size[1] );
      } else {
        //$thumbnail[1] = null;
        //$thumbnail[2] = null;
      }  
      return( $thumbnail );
    }
     
     View on GitHub View on Trac

Published: February 2, 2018 | Last updated: February 2, 2018

Information

Function name: bw_force_size
Plugin ref: oik – oik information kit
Version: 4.8.2
Sourcefile: includes/bw_images.inc
File ref: includes/bw_images.inc
Deprecated?: No
API Letters: B,F,S

Recent plugin updates

oik-css v2.1.0 Update to oik-css v2.1.0 for the ability to style CSS and GeSHi output in documentation. ...
oik-types v2.3.0 Update to oik-types v2.3.0 for improved control over sort order on archives ...
UK-tides v3.1.0 UK-tides v3.1.0 now supports several additional ports. It's built with latest wp-scripts and shared libraries and tested with WordPress 6.1. ...
oik v4.8.2 Upgrade to oik v4.8.2 if you installed oik v4.8.1 from wordpress.org and found that the blocks were missing from the editor. ...
sb-chart-block v1.1.0 sb-chart-block v1.1.0 now uses chart.js v3.9.1. Tested with WordPress 6.0.1 and Gutenberg 13.8.2 ...

Plugins

  • All Plugins
  • oik base plugin
  • FREE oik plugins
  • WordPress plugins
  • Premium oik plugins

Themes

  • FREE themes
  • Bespoke themes
  • Premium themes

Blocks

  • All Blocks
  • Block examples
  • About Blocks

Shortcodes

  • All Shortcodes
  • Shortcode examples
  • About Shortcodes

Reference

  • About APIs
  • All APIs
  • All Classes
  • All Files
  • All Hooks

Support

  • Contact
  • Cookies policy
  • Get API key
  • Privacy
  • Request support
  • Sitemap
  • Stay informed
  • Terms and Conditions
oik-plugins
Email: herb@bobbingwide.com

Weight shipping plugins

Find out which cart weight shipping plugin you need for your WooCommerce site.
Which cart weight based plugin do I need?

Site:  www.oik-plugins.com
© Copyright oik-plugins 2011-2023. All rights reserved.


Website designed and developed by Herb Miller of Bobbing Wide
Proudly powered by WordPress and oik-plugins
WordPress 6.1.1. PHP: 7.4.33. Memory limit: 768M