Wordpress - Themes and Appearance
What will the following code output if the sidebar 'primary' has no widgets?
<?php if ( is_active_sidebar( 'primary' ) ) { dynamic_sidebar( 'primary' ); } else { echo 'No widgets found'; } ?>