1. <?php global $wp_theme_options; ?>
  2. <div class="w360- left sidebar" id="sidebar">
  3.  
  4. <!--sidebar.php-->
  5.  
  6. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Wide Sidebar Top') ) : ?>
  7. <?php if ($wp_theme_options['identify_widget_areas'] == 'yes') : ?>
  8. <div class="widget">
  9. <h4>This is a Widget Section</h4>
  10. <p>This section is widgetized. If you would like to add content to this section, you may do so by using the Widgets panel from within your WordPress Admin Dashboard. This Widget Section is called "Wide Sidebar Top"</p>
  11. </div>
  12. <?php endif; endif; ?>
  13.  
  14. <?php get_sidebar('left'); ?>
  15. <?php get_sidebar('right'); ?>
  16.  
  17. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Wide Sidebar Bottom') ) : ?>
  18. <?php if ($wp_theme_options['identify_widget_areas'] == 'yes') : ?>
  19. <div class="widget">
  20. <h4>This is a Widget Section</h4>
  21. <p>This section is widgetized. If you would like to add content to this section, you may do so by using the Widgets panel from within your WordPress Admin Dashboard. This Widget Section is called "Wide Sidebar Bottom"</p>
  22. </div>
  23. <?php endif; endif; ?>
  24.  
  25. </div>