// every page/post has an option to display the spotlight slider at the top of the page
// if the option is selected, the appropriate widget area is printed
$fields = get_field('spotlight_slider');
if ($fields){
if (in_array('show_slider',$fields)){
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("Top Of All") ){}
}
}
?>
Coming Soon