我尝试过这个解决方案,但根本不起作用!
if( !dynamic_sidebar(\'footer1\') || !dynamic_sidebar(\'footer2\') || !dynamic_sidebar(\'footer3\') ) {
// Do nothing
} else {
// Display the footer
}
幸亏
Chip Bennett 他的解决方案很好,我是这样使用的:
<?php if( is_active_sidebar(\'footer1\') || is_active_sidebar(\'footer2\') || is_active_sidebar(\'footer3\')) {
?>
<div class="footer">
</div>
<?php } ?>