When I write a quote in the text widget and displayed the text is wrapped as “My text…”. I would like to remove the div and put simply “My text…”. without using jquery.
For Example: Current output
<div class="container">
<div class=“textwidget”>
My text...
</div>
</div>
Required output:
<div class="container">
My text...
</div>
This is the actual code:
<div class="container">
<?php dynamic_sidebar('text_show');?>
</div>