Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save thadallender/d474d89ac3ced9c62c2c to your computer and use it in GitHub Desktop.

Select an option

Save thadallender/d474d89ac3ced9c62c2c to your computer and use it in GitHub Desktop.
Filter Sell Media Thumbnail Size
<?php
/**
* Filters the size of thumbnail in Sell Media
*/
function sell_media_filter_thumbnail_size(){
return 'large';
}
add_filter( 'sell_media_thumbnail', 'sell_media_filter_thumbnail_size' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment