Skip to content

Instantly share code, notes, and snippets.

@BinaryMoon
Created April 21, 2021 11:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BinaryMoon/4a007c0967177ec8e6a75212d48be35c to your computer and use it in GitHub Desktop.
Save BinaryMoon/4a007c0967177ec8e6a75212d48be35c to your computer and use it in GitHub Desktop.
Change thumbnail sizes in the Broadsheet theme
<?php
/**
* Plugin Name: Change Archive Image Thumbnail size.
* Plugin URI: https://prothemedesign.com
* Description: Change the size of the archive image thumbnails so that they can be made full width.
* Author: Ben Gillbanks
* Version: 1.0
* Author URI: https://prothemedesign.com
* Text Domain: broadsheet
*/
function broadsheet_archive_image_size() {
// Post listing image size.
add_image_size( 'broadsheet-archive', 200, 160, true );
// Featured image size.
add_image_size( 'broadsheet-feature', 260, 163, true );
}
add_action( 'after_setup_theme', 'broadsheet_archive_image_size', 99 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment