Skip to content

Instantly share code, notes, and snippets.

@frankyonnetti
Last active February 17, 2021 00:16
Show Gist options
  • Select an option

  • Save frankyonnetti/87cae57d3a2fbc854dd3719da79ef51a to your computer and use it in GitHub Desktop.

Select an option

Save frankyonnetti/87cae57d3a2fbc854dd3719da79ef51a to your computer and use it in GitHub Desktop.
WordPress - custom image sizes #wordpress #images
<?php
/**
* Custom image sizes.
* https: //developer.wordpress.org/reference/functions/add_image_size/
*/
function THEMENAME_image_size() {
add_image_size( 'card-author', 130, 110, true ); // true = cropped
add_image_size( 'two-column-img', 800 ); // 800 pixels wide with unlimited height
}
add_action('after_setup_theme', 'THEMENAME_image_size');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment