Skip to content

Instantly share code, notes, and snippets.

@tareq1988
Last active December 19, 2015 00:59
Show Gist options
  • Save tareq1988/5872783 to your computer and use it in GitHub Desktop.
Save tareq1988/5872783 to your computer and use it in GitHub Desktop.
<?php
if ( is_multisite() ) {
global $wpdb;
$all_sites = $wpdb->get_results( "SELECT * FROM $wpdb->blogs" );
if ( $all_sites ) {
foreach ($all_sites as $site) {
$wpdb->set_blog_id( $site->blog_id );
$wpdb->query( "DELETE FROM `{$wpdb->prefix}options` WHERE `option_name` LIKE ('_transient_%')" );
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment