Created
December 9, 2015 10:26
-
-
Save barrykooij/c961a42943f927390965 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_listings_vehicle_thumbnail_size( $thumb_size ) { | |
return 'wpcm-my-thumbnail'; | |
} | |
add_filter( 'wpcm_listings_vehicle_thumbnail_size', 'wpcm_my_listings_vehicle_thumbnail_size' ); | |
function wpcm_theme_setup_image_size() { | |
add_image_size( 'wpcm-my-thumbnail', 180, 180, true ); | |
} | |
add_action( 'after_setup_theme', 'wpcm_theme_setup_image_size' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment