Skip to content

Instantly share code, notes, and snippets.

@lmartins
Created December 17, 2014 19:23
Show Gist options
  • Save lmartins/4aca0885883de9709bb6 to your computer and use it in GitHub Desktop.
Save lmartins/4aca0885883de9709bb6 to your computer and use it in GitHub Desktop.
Activate cropping for all thumbnail sizes
// Standard Size Thumbnail
if(false === get_option("thumbnail_crop")) {
add_option("thumbnail_crop", "1"); }
else {
update_option("thumbnail_crop", "1");
}
// Medium Size Thumbnail
if(false === get_option("medium_crop")) {
add_option("medium_crop", "1"); }
else {
update_option("medium_crop", "1");
}
// Large Size Thumbnail
if(false === get_option("large_crop")) {
add_option("large_crop", "1"); }
else {
update_option("large_crop", "1");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment