Advertisement
hamzahali

sidebar

Sep 15th, 2012
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <?php
  2.  
  3. global $solostream_options;
  4.  
  5. if ( $solostream_options['solostream_layout'] !== "Full-Width" ) {
  6.  
  7. ?>
  8.  
  9.  
  10.  
  11. <div id="contentright">
  12.  
  13.  
  14.  
  15. <div id="sidebar" class="clearfix">
  16.  
  17. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar-Wide - Top') ) : ?>
  18.  
  19. <div class="widget">
  20.  
  21. <h3 class="widgettitle">Text Widget</h3>
  22.  
  23. <div class="textwidget">
  24.  
  25. This is a widget area. Visit the Widget page in your WordPress control panel to add some content here
  26.  
  27. </div>
  28.  
  29. </div>
  30.  
  31.  
  32.  
  33. <div class="widget">
  34.  
  35. <h3 class="widgettitle">Text Widget</h3>
  36.  
  37. <div class="textwidget">
  38.  
  39. This is a widget area. Visit the Widget page in your WordPress control panel to add some content here
  40.  
  41. </div>
  42.  
  43. </div>
  44.  
  45. <?php endif; ?>
  46.  
  47. </div>
  48.  
  49.  
  50.  
  51. <div id="sidebar-bottom" class="clearfix">
  52.  
  53.  
  54.  
  55. <div id="sidebar-bottom-left">
  56.  
  57. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar-Wide - Bottom Left') ) : ?>
  58.  
  59. <?php endif; ?>
  60.  
  61. </div>
  62.  
  63.  
  64.  
  65. <div id="sidebar-bottom-right">
  66.  
  67. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar-Wide - Bottom Right') ) : ?>
  68.  
  69. <?php endif; ?>
  70.  
  71. </div>
  72.  
  73.  
  74.  
  75. </div>
  76.  
  77.  
  78.  
  79. </div>
  80.  
  81.  
  82.  
  83. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement