Advertisement
Guest User

Untitled

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