logo

This is an old version of this answer!

Return to the current answer
Do you know the ID of the widget?
The is_active_widget function only supports the ID of the widget, not by the name.

This is the code
<?php
$widget_id = 1;
if ( function_exists('dynamic_sidebar') && function_exists( 'is_active_widget' ) && is_active_widget( false, $widget_id )) :
?>
<div id="footer-widgets">
<?php dynamic_sidebar( $widget_id ); ?>
</div>
<?php endif; ?>

Utkarsh Kukreti | 12/14/09 at 12:55am

This is an old version of this answer!

Return to the current answer