Skip to content

Instantly share code, notes, and snippets.

@barrykooij
Created December 9, 2015 10:26
Show Gist options
  • Save barrykooij/c961a42943f927390965 to your computer and use it in GitHub Desktop.
Save barrykooij/c961a42943f927390965 to your computer and use it in GitHub Desktop.
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