Last active
February 17, 2021 00:16
-
-
Save frankyonnetti/87cae57d3a2fbc854dd3719da79ef51a to your computer and use it in GitHub Desktop.
WordPress - custom image sizes #wordpress #images
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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