Skip to content

Instantly share code, notes, and snippets.

@barrykooij
Created May 10, 2016 10:28
Show Gist options
  • Save barrykooij/731acd100c23fd5f999d5ecd1a09e817 to your computer and use it in GitHub Desktop.
Save barrykooij/731acd100c23fd5f999d5ecd1a09e817 to your computer and use it in GitHub Desktop.
function wpcm_my_large_thumbnail_size( $image_size ) {
$image_size = 'my-custom-image-size';
return $image_size;
}
add_filter( 'wpcm_single_vehicle_large_thumbnail_size', 'wpcm_my_large_thumbnail_size', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment