Hi,
same with me.. nothing changed…
i’m using constructor theme..
please advise..
this is my footer.php:
<?php
/**
* @package WordPress
* @subpackage Constructor
*/
?>
</div><!– id=’wrapcontent’ –>
<div id=”wrapfooter” class=”wrapper”>
<div id=”footer”>
<?php
// check active
if (is_active_sidebar(‘footer’)
or is_active_sidebar(‘footer-posts’)
or is_active_sidebar(‘footer-pages’)
or is_active_sidebar(‘footer-categories’)) {
echo ”
// switch statement for widget place
switch (true) {
case (is_archive() && dynamic_sidebar(‘footer-categories’)):
break;
case (is_page() && dynamic_sidebar(‘footer-pages’)):
break;
case (is_single() && dynamic_sidebar(‘footer-posts’)):
break;
case (dynamic_sidebar(‘footer’)):
break;
default:
// nothing
break;
}
echo “
“;
}
?>
<p class=”clear copy”>
<?php get_constructor_footer();?>
</p>
</div>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>