get_col( "SELECT option_name FROM $wpdb->options where (option_name LIKE '_transient_timeout_essb_precache_static-%') OR (option_name LIKE '_transient_essb_precache_static-%')" ); if( empty( $expired ) ) { return false; } foreach( $expired as $transient ) { $name = str_replace( '_transient_timeout_', '', $transient ); $name = str_replace( '_transient_', '', $transient ); delete_transient( $name ); } return true; } } ?>