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 | |
| /* | |
| Plugin Name: Disable Woo Thumbs | |
| Description: Disables all thumbs from WooCommerce and prevents them being regenerated. | |
| Version: 1.0.0 | |
| */ | |
| add_action( 'init', 'disable_woo_thumbs_on_init' ); | |
| function disable_woo_thumbs_on_init() { | |
| remove_image_size( 'uncode_woocommerce_nav_thumbnail_regular' ); |
OlderNewer