Advertisement
Guest User

Untitled

a guest
Nov 12th, 2011
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. <?php
  2. /**
  3. * The Sidebar containing the main widget area.
  4. *
  5. * @package WordPress
  6. * @subpackage Twenty_Eleven
  7. * @since Twenty Eleven 1.0
  8. */
  9. $options = twentyeleven_get_theme_options();
  10. $current_layout = $options['theme_layout'];
  11. if ( 'content' != $current_layout ) :
  12. ?>
  13. <div id="secondary" class="widget-area" role="complementary">
  14. <?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
  15. <aside id="archives" class="widget">
  16. <h3 class="widget-title"><?php _e( 'Archives', 'twentyeleven' ); ?></h3>
  17. <ul>
  18. <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
  19. </ul>
  20. </aside>
  21. <aside id="meta" class="widget">
  22. <h3 class="widget-title"><?php _e( 'Meta', 'twentyeleven' ); ?></h3>
  23. <ul>
  24. <?php wp_register(); ?>
  25. <li><?php wp_loginout(); ?></li>
  26. <?php wp_meta(); ?>
  27. </ul>
  28. </aside>
  29. <?php endif; // end sidebar widget area ?>
  30. </div><!-- #secondary .widget-area -->
  31. <div id="tertiary" class="widget-area" role="complementary">
  32. <?php if ( ! dynamic_sidebar( 'sidebar-6' ) ) : ?>
  33. <aside id="archives" class="widget">
  34. <h3 class="widget-title"><?php _e( 'Archives', 'twentyeleven' ); ?></h3>
  35. <ul>
  36. <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
  37. </ul>
  38. </aside>
  39. <aside id="meta" class="widget">
  40. <h3 class="widget-title"><?php _e( 'Meta', 'twentyeleven' ); ?></h3>
  41. <ul>
  42. <?php wp_register(); ?>
  43. <li><?php wp_loginout(); ?></li>
  44. <?php wp_meta(); ?>
  45. </ul>
  46. </aside>
  47. <?php endif; // end sidebar widget area ?>
  48. </div><!-- #tertiary .widget-area -->
  49. <?php endif; ?>
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement