Skip to content

Instantly share code, notes, and snippets.

@barrykooij
Created February 23, 2018 11:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barrykooij/13b5a024da7cb526fb378adad34d81de to your computer and use it in GitHub Desktop.
Save barrykooij/13b5a024da7cb526fb378adad34d81de to your computer and use it in GitHub Desktop.
add_action( 'init', function() {
add_image_size( 'wpcm_my_custom_listing_image_size', 350, 150, true );
} );
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