Advertisement
floridabeauties

WP-ClearVideo: Sidebar (sidebar.php)

Jun 14th, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. <?php
  2. global $solostream_options;
  3. if ( $solostream_options['solostream_layout'] !== "Full-Width" ) {
  4. ?>
  5.  
  6. <div id="contentright">
  7.  
  8. <div id="sidebar" class="clearfix">
  9. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar-Wide - Top') ) : ?>
  10. <div class="widget">
  11. <h3 class="widgettitle"><span>Text Widget</span></h3>
  12. <div class="textwidget">
  13. This is a widget area. Visit the Widget page in your WordPress control panel to add some content here
  14. </div>
  15. </div>
  16.  
  17. <div class="widget">
  18. <h3 class="widgettitle"><span>Text Widget</span></h3>
  19. <div class="textwidget">
  20. This is a widget area. Visit the Widget page in your WordPress control panel to add some content here
  21. </div>
  22. </div>
  23. <?php endif; ?>
  24. </div>
  25.  
  26. <div id="sidebar-bottom" class="clearfix">
  27.  
  28. <div id="sidebar-bottom-left">
  29. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar-Wide - Bottom Left') ) : ?>
  30. <?php endif; ?>
  31. </div>
  32.  
  33. <div id="sidebar-bottom-right">
  34. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar-Wide - Bottom Right') ) : ?>
  35. <?php endif; ?>
  36. </div>
  37.  
  38. </div>
  39.  
  40. </div>
  41.  
  42. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement