Reputation: 4281
I want to backup the settings for the widgets on a WP blog. I took a look at the DB but I can't find where they are located. If you could provide some insight, it would be great.
Thank you.
Upvotes: 6
Views: 10156
Reputation: 541
All is in the database but more configurations of the Widgets are in serialized format. To change the reference on serialized data there is some scripts, i use this that work fine.
link to download the script: http://davidcoveney.com/575/php-serialization-fix-for-wordpress-migrations/
Upvotes: 1
Reputation: 371
They are saved as serialized values in wp_options. Their option names are prefixed with "widget_"
Upvotes: 10