Skip to content

Instantly share code, notes, and snippets.

@joemcgill
Last active April 15, 2024 08:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joemcgill/7b4549fddf17f9d201b1f152d26dcc26 to your computer and use it in GitHub Desktop.
Save joemcgill/7b4549fddf17f9d201b1f152d26dcc26 to your computer and use it in GitHub Desktop.
WPP Better Image Sizes is a proof of concept WordPress plugin that provides a better calculation for the default sizes attribute for images.

WPP Better Image Sizes

This is a WordPress Plugin that improves the default sizes attribute calculation for images.

Description

WPP Better Image Sizes is a WordPress plugin that provides a better calculation for the default sizes attribute for images. This plugin is designed to enhance the performance and responsiveness of your WordPress site.

Installation

  1. Upload the plugin files to the /wp-content/plugins/wpp-better-image-sizes directory, or install the plugin through the WordPress plugins screen directly.
  2. Activate the plugin through the 'Plugins' screen in WordPress

Usage

Once activated, the plugin will automatically improve the default sizes attribute calculation for images.

License

This project is licensed under the GPL2 License.

Author

Joe McGill https://joemcgill.net/

Plugin URI

https://github.com/joemcgill/wpp-better-image-sizes

<?php
/**
* Plugin Name: WPP Better Image Sizes
* Plugin URI: https://github.com/joemcgill/wpp-better-image-sizes
* Description: This is a WordPress Plugin that improves the default sizes attribute calculation for images.
* Version: 0.1
* Author: Joe McGill
* Author URI: https://joemcgill.net/
* License: GPL2
*/
namespace WPP_Better_Image_Sizes;
use \WP_HTML_Tag_Processor;
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
add_filter( 'render_block_core/image', __NAMESPACE__ . '\\add_sizes_attribute', 10, 3 );
add_filter( 'render_block_core/cover', __NAMESPACE__ . '\\add_sizes_attribute', 10, 3 );
/**
* Filter the sizes attribute for images to improve the default calculation.
*
* @param string $content The block content about to be rendered.
* @param array $parsed_block The parsed block.
* @param \WP_Block $block The block object.
* @return string The updated block content.
*/
function add_sizes_attribute( $content, $parsed_block, $block ) {
$tags = new WP_HTML_Tag_Processor( $content );
$image = $tags->next_tag( 'img' );
$layout = wp_get_global_settings( array( 'layout' ) );
// Only update the markup if an image is found and we have layout settings.
if ( $image && isset( $layout['wideSize'] ) && $layout['contentSize'] ) {
$align = $parsed_block['attrs']['align'] ?? null;
// @todo: Calculate padding from theme settings. Use 2rem as an example for now.
$padding = '2rem';
// Handle different alignment use cases.
switch ($align) {
case 'full':
$isRootPaddingAware = wp_get_global_settings( array( 'useRootPaddingAwareAlignments' ) );
$sizes = $isRootPaddingAware ? '100vw' : sprintf( 'calc(100vw - %1$s)', $padding );
break;
case 'wide':
$sizes = sprintf( '(max-width: calc(%1$s + %2$s)) calc(100vw - %2$s), %1$s', $layout['wideSize'], $padding );
break;
// @todo: handle left/right alignments.
case 'left':
case 'right':
// $width = $parsed_block['attrs']['width'] ?? null;
// $sizes = $width ? sprintf( '(max-width: %1$s) 100vw, %1$s', $width ) : null;
// break;
default:
$sizes = sprintf( '(max-width: calc(%1$s + %2$s)) calc(100vw - %2$s), %1$s', $layout['contentSize'], $padding );
break;
}
if ( $sizes ) {
$tags->set_attribute( 'sizes', $sizes );
}
$content = $tags->get_updated_html();
}
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment