Skip to content

Instantly share code, notes, and snippets.

@BinaryMoon
Created April 26, 2019 08:31
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/eb64ef98b4ede0673ab37baddbb28358 to your computer and use it in GitHub Desktop.
Save BinaryMoon/eb64ef98b4ede0673ab37baddbb28358 to your computer and use it in GitHub Desktop.
Change the archive image size for the Broadsheet WordPress theme : https://prothemedesign.com/theme/broadsheet/
<?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() {
add_image_size( 'broadsheet-archive', 800, 9999, false );
}
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