From abc4a95c0606bd377262c43f5368a2772e818cba Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Tue, 7 May 2019 15:46:23 -0400 Subject: [PATCH] Adjust thumbnail resizing to crop images if needed --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index fc4a96c..4ea3081 100644 --- a/functions.php +++ b/functions.php @@ -144,7 +144,7 @@ add_action('init', 'mytheme_init', 10); function wpse_setup_theme() { add_image_size('glm-block-image', 290, 190,true); - add_image_size('dropdown-thumbnail', 200, 100 ); + add_image_size('dropdown-thumbnail', 200, 100, true ); } add_action( 'after_setup_theme', 'wpse_setup_theme' ); -- 2.17.1