Skip to content

Instantly share code, notes, and snippets.

@barrykooij
Created November 11, 2016 10:38
Show Gist options
  • Save barrykooij/55677eb9b7e23ebb20ae38a64d17c863 to your computer and use it in GitHub Desktop.
Save barrykooij/55677eb9b7e23ebb20ae38a64d17c863 to your computer and use it in GitHub Desktop.
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