Created
August 5, 2015 19:25
-
-
Save SeanChDavis/0a49d08e17758d7ec6b4 to your computer and use it in GitHub Desktop.
Vendd Resize Product Images
This file contains 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 // DO NOT COPY THIS LINE - start at line 4 | |
// add Vendd product images square | |
function custom_ward_kelley_product_images() { | |
add_image_size( 'vendd_product_image', 722, 722, true ); | |
} | |
add_action( 'init', 'custom_ward_kelley_product_images' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment