Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.
1 to 4 of 4
The theme config is stored in the database. Same with the installed plugins. Tarski’s options are stored in the wp_options table; you can dump it out via a query like this:
SELECT option_value FROM wp_options WHERE option_name = 'tarski_options';
You can then reimport the serialised options value like this:
INSERT INTO wp_options (option_name, option_value) VALUES ('tarski_options', ' ...serialised value goes here... ');
1 to 4 of 4