Created
May 10, 2016 10:28
-
-
Save barrykooij/731acd100c23fd5f999d5ecd1a09e817 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
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