Created
July 9, 2014 20:30
-
-
Save thadallender/d474d89ac3ced9c62c2c to your computer and use it in GitHub Desktop.
Filter Sell Media Thumbnail Size
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
| <?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