# Sage "9.1": Please test

**URL:** https://discourse.roots.io/t/sage-9-1-please-test/20067
**Category:** sage
**Tags:** sage9
**Created:** 2021-02-11T11:47:33Z
**Posts:** 116
**Showing post:** 98 of 116

## Post 98 by @strarsis — 2021-08-24T11:44:06Z

Alright, your observation is indeed correct. Soil now uses a different theme support key and an array for the options:

> <https://github.com/roots/soil/commit/98582d6a7c49b42e90336c508bfb26aa04ac8973>

You have to replace the existing Soil-related lines in Sage 9.x (and currently 9.1, I plan to fix that):

> **[GitHub - roots/soil: WordPress plugin which contains a collection of modules...](https://github.com/roots/soil#modules)**
>
> WordPress plugin which contains a collection of modules to apply theme-agnostic front-end modifications - GitHub - roots/soil: WordPress plugin which contains a collection of modules to apply theme...

```
/**
     * Enable features from Soil when plugin is activated
     * for Soil 3.x
     * @link https://roots.io/plugins/soil/
     */
    add_theme_support('soil-clean-up');
    add_theme_support('soil-jquery-cdn');
    add_theme_support('soil-nav-walker');
    add_theme_support('soil-nice-search');
    add_theme_support('soil-relative-urls');

    /**
     * Enable features from Soil when plugin is activated
     * for Soil 4.x
     * @link https://roots.io/plugins/soil/
     */
    add_theme_support('soil', [
        'clean-up',
        'disable-rest-api',
        'disable-asset-versioning',
        'disable-trackbacks',
        // 'google-analytics' => 'UA-XXXXX-Y', // @TODO: Add Google Analytics site key
        'js-to-footer',
        'nav-walker',
        'nice-search',
        'relative-urls',
    ]);
```

---

_[View the full topic](https://discourse.roots.io/t/sage-9-1-please-test/20067)._
