Created
November 11, 2016 10:38
-
-
Save barrykooij/55677eb9b7e23ebb20ae38a64d17c863 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_action( 'init', function() { | |
add_image_size( 'wpcm_my_custom_listing_image_size', 200, 200, true ); // replace 100, 100 with size you like | |
} ); | |
add_filter( 'wpcm_listings_vehicle_thumbnail_size', function( $image_size ) { | |
return 'wpcm_my_custom_listing_image_size'; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment