I want to take the text widget and remove the preceding / trailing markup from the text output currently showing as
<div class="textwidget">Test</div>
The before_widget / after_widget that is assigned with each widget area is under my control but the widget content itself is beyond me.
// Area 4, located in the footer. Empty by default.
register_sidebar( array(
'name' => __( 'First Footer Widget Area', 'lakeshoreautoclinic' ),
'id' => 'first-footer-widget-area',
'description' => __( 'The first footer widget area', 'lakeshoreautoclinic' ),
'before_widget' => ' <p>',
'after_widget' => '</p>',
'before_title' => '<strong>',
'after_title' => '</strong>',
) );
which outputs this for the surrounding / widget
<p><strong>Test</strong><div class="textwidget">Test</div></p>