Exclude specific tables from the database optimization in SiteGround Optimizer

Exclude specific tables from the database optimization in SiteGround Optimizer on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'sgo_db_optimization_exclude', 'sgo_db_optimization_exclude_table' );
function sgo_db_optimization_exclude_table( $excluded_tables ) {
    // Add tables that you need to exclude without the wpdb prefix.
    $excluded_tables[] = 'woocommerce_sessions';
    $excluded_tables[] = 'woocommerce_log';

    return $excluded_tables;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.