add multiple classes at once via page_theme

Permalink
How can i add multiple classes at once via page_theme, "getThemeAreaClasses()"
is that possible? it would be much easier and would save time for editors.
thank you.

helvetica
 
rge replied on at Permalink Best Answer Reply
You can add the extra class in the same string.

public function getThemeAreaClasses()
    {
        return [
            'Page Footer' => ['area-content-accent area-content-accent-two '],
        ];
    }
helvetica replied on at Permalink Reply
helvetica
works! thanks.

so i have to add every area on page where i want multiple classes?
why does wildcard * not work for any area?