New Topic

Reply To: Customization (My Website)

Home › Forum › Customization › Customization (My Website) › Reply To: Customization (My Website)

#871

uendi
Participant

Hello StartupWP,

Refer to your previous reply post :

– Now, copy over footer.php to the child theme, open it up and add wherever you want the widget area to appear:

<div id=”footer-sidebar”>
<?php if ( is_active_sidebar(‘footer-widget-area-2’) ) : ?>
<div id=”fsidebar” class=”widget-area”>
<ul class=”sid”>
<?php dynamic_sidebar(‘footer-widget-area-2’); ?>

<div class=”clear”></div>
</div>
<?php endif; ?>
</div>

Can I add them in just after :

<div id=”footer-sidebar”>
<?php if ( is_active_sidebar(‘footer-widget-area’) ) : ?>
<div id=”fsidebar” class=”widget-area”>
<ul class=”sid”>
<?php dynamic_sidebar(‘footer-widget-area’); ?>

<div class=”clear”></div>
</div>
<?php endif; ?>
</div></div>

Followed by :

<?php wp_footer(); ?>
</body>
</html>

Thanks.