Delete/Clear Widgets in Database

View: New views
3 Messages — Rating Filter:   Alert me  

Delete/Clear Widgets in Database

by Nathan Rice :: Rate this Message:

| View Threaded | Show Only this Message

I have several widgetized sections in a particular theme, and I'm looking
for a way to clear out all the widgets placed into the sections in 1 swoop.
Is there a single line I can place in my functions.php file that will
basically take all the widgets currently placed into widget sections and
remove them?
_______________________________________________
wp-hackers mailing list
wp-hackers@...
http://lists.automattic.com/mailman/listinfo/wp-hackers

Re: Delete/Clear Widgets in Database

by Nathan Rice :: Rate this Message:

| View Threaded | Show Only this Message

Figured it out on my own.  Here's what I added:
$null = null;
update_option('sidebars_widgets',$null);

It clears out all active widgets ... gives you a clean slate.

Nathan


On Tue, Dec 23, 2008 at 10:28 PM, Nathan Rice <ncrice@...> wrote:

> I have several widgetized sections in a particular theme, and I'm looking
> for a way to clear out all the widgets placed into the sections in 1 swoop.
> Is there a single line I can place in my functions.php file that will
> basically take all the widgets currently placed into widget sections and
> remove them?
>
_______________________________________________
wp-hackers mailing list
wp-hackers@...
http://lists.automattic.com/mailman/listinfo/wp-hackers

Re: Re: Delete/Clear Widgets in Database

by scribu :: Rate this Message:

| View Threaded | Show Only this Message

You could just write

update_option('sidebars_widgets', NULL);

On 12/24/08, Nathan Rice <ncrice@...> wrote:

> Figured it out on my own.  Here's what I added:
> $null = null;
> update_option('sidebars_widgets',$null);
>
> It clears out all active widgets ... gives you a clean slate.
>
> Nathan
>
>
> On Tue, Dec 23, 2008 at 10:28 PM, Nathan Rice <ncrice@...> wrote:
>
>> I have several widgetized sections in a particular theme, and I'm looking
>> for a way to clear out all the widgets placed into the sections in 1
>> swoop.
>> Is there a single line I can place in my functions.php file that will
>> basically take all the widgets currently placed into widget sections and
>> remove them?
>>
> _______________________________________________
> wp-hackers mailing list
> wp-hackers@...
> http://lists.automattic.com/mailman/listinfo/wp-hackers
>


--
http://scribu.net
_______________________________________________
wp-hackers mailing list
wp-hackers@...
http://lists.automattic.com/mailman/listinfo/wp-hackers