I suppose you are doing something like this:



<?php if ( ! dynamic_sidebar( 'widget-area' ) ) : ?>
 Your sidebar code goes here.<?php endif; ?>


If yes, do this instead:



Your sidebar code goes here.<?php dynamic_sidebar( 'widget-area' ); ?>



More Solution