New Topic

Reply To: Content Widget Area

Home › Forum › Help › Content Widget Area › Reply To: Content Widget Area

#1411

StartupWP
Keymaster

Try placing the following at the very top of footer.php:

<?php if ( is_home() ) { ?>
<aside id="content-sidebar" role="complementary">
<?php if ( is_active_sidebar( 'content-widget-area' ) ) : ?>
<div id="csidebar" class="widget-area">
<ul class="xoxo">
<?php dynamic_sidebar( 'content-widget-area' ); ?>
</ul>
<div class="clear"></div>
</div>
<?php endif; ?>
</aside>
<?php } ?>