Skip to content

Instantly share code, notes, and snippets.

@shrimp2t
Created July 4, 2017 09:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shrimp2t/880826afb287349c099c442ef94de5b9 to your computer and use it in GitHub Desktop.
Save shrimp2t/880826afb287349c099c442ef94de5b9 to your computer and use it in GitHub Desktop.
Enable Auto store thumbnail
<?php /*
Plugin Name: Enable Auto store thumbnail
Version: 1.0.0
*/
$stores = get_terms( array(
'taxonomy' => 'coupon_store',
'hide_empty' => false,
) );
foreach ( $stores as $t ) {
update_term_meta( $t->term_id, '_wpc_auto_thumbnail', 1 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment