wordpress widget prob
Posted
by codedude
on Stack Overflow
See other posts from Stack Overflow
or by codedude
Published on 2010-03-13T20:46:16Z
Indexed on
2010/03/13
20:55 UTC
Read the original article
Hit count: 399
Wordpress
|wordpress-plugin
I am using widgets in my wordpress theme and I need to remove the:
<div class="textwidget"></div>
that appears around the widget's content. I am using this in my function.php file:
if (function_exists('register_sidebar'))
register_sidebar(array('name'=>'Church Address', 'before_widget' => '', 'after_widget' => '', 'before_title' => '', 'after_title' => '
', ));but I need to remove the div from around the text widget's body. Is there some way to do this?
© Stack Overflow or respective owner