Last active
June 19, 2023 09:28
-
-
Save johnmccole/847f53d9132082d9fac5b69d703a698e to your computer and use it in GitHub Desktop.
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
/** | |
* Add custom image sizes | |
*/ | |
add_image_size('960x1080', 960, 1080, true); // 960x1080, hard crop | |
add_image_size('1920x540', 1920, 540, true); // 1920, hard crop | |
add_image_size('1920x1080', 1920, 1080); // 1920x1080, proportional crop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment