As with most things in WordPress, it’s saved to the database. It stores it in a record in the options table.
Thread Starter
Null
(@null)
In the db? So the plugin makes/changes the db table? And how is this table called?
Also, does this mean that if you change themes, the same widget order is shown on the frontpage (what I want) or is this different for each theme? (having 10 themes makes this a lot of work) or is there an option/code to choose from to have the widget order the same for every theme or not?
Thx
“So the plugin makes/changes the db table?“
Yes. It does so each time you change the order, or add/remove widgets, etc.
“And how is this table called?“
It’s a single record stored in the options table. The record could be called through a query, though usually a plugin makes use of the internal WP function get_option() for data stored in the options table.
As for your other questions, I don’t really know. I don’t use Sidebar Widgets regularly, and haven’t played with it in a multi-theme setup.