Topic: Add Widget Area
How do I add a custom widget space to the end of my posts?
I want it to follow the same CSS classes of my Bottom Content widgets. What code do I use to add the new space (so I can add widgets in the admin area)?
This is the current code of my bottom content widgets:
<?php $sidebars = wp_get_sidebars_widgets(); ?>
<div id="bottom-content-1">
<?php if ( $sidebars['sidebar-4'] ) : ?>
<ul class="clearfix xoxo">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Bottom Content #1') ) : ?>
<?php endif; ?>
</ul>
<?php endif; ?>
</div>
<div id="bottom-content-2">
<?php if ( $sidebars['sidebar-5'] ) : ?>
<ul class="clearfix xoxo">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Bottom Content #2') ) : ?>
<?php endif; ?>
</ul>
<?php endif; ?>
</div>