Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where do the widget settings get saved on the Wordpress db?

Tags:

wordpress

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.

like image 674
johnjohn Avatar asked Jan 18 '11 00:01

johnjohn


Video Answer


2 Answers

They are saved as serialized values in wp_options. Their option names are prefixed with "widget_"

like image 81
Chris Vilchez Avatar answered Nov 15 '22 07:11

Chris Vilchez


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/

like image 45
Gianluca Lodigiani Avatar answered Nov 15 '22 08:11

Gianluca Lodigiani