Advertisement
Guest User

Untitled

a guest
Sep 5th, 2012
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 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.  
  10. $options = twentyeleven_get_theme_options();
  11. $current_layout = $options['theme_layout'];
  12.  
  13. if ( 'content' != $current_layout ) :
  14. ?>
  15. <div id="secondary" class="widget-area" role="complementary">
  16. <?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
  17.  
  18. <aside id="archives" class="widget">
  19. <h3 class="widget-title"><?php _e( 'Archives', 'twentyeleven' ); ?></h3>
  20. <ul>
  21. <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
  22. </ul>
  23. </aside>
  24.  
  25. <aside id="meta" class="widget">
  26. <h3 class="widget-title"><?php _e( 'Meta', 'twentyeleven' ); ?></h3>
  27. <ul>
  28. <?php wp_register(); ?>
  29. <li><?php wp_loginout(); ?></li>
  30. <?php wp_meta(); ?>
  31. </ul>
  32. </aside>
  33.  
  34. <?php endif; // end sidebar widget area ?>
  35. </div><!-- #secondary .widget-area -->
  36.  
  37.  
  38.  
  39.  
  40. <!--See Note 1-->
  41. <ul id="nav">
  42. <!--See Note 2-->
  43. <?php if(is_home() && !is_paged()){ ?>
  44. <li class="current_page_item">
  45. <a href="<?php echo get_settings('home'); ?>" title="You are Home">Blog Navigation</a>
  46. </li>
  47. <?php } else { ?>
  48. <li>
  49. <a href="<?php echo get_settings('home'); ?>" title="Click for Home">Blog Home</a>
  50. </li>
  51. <?php } ?>
  52. <!--See Note 3-->
  53. <?php wp_list_pages('sort_column=menu_order&title_li='); ?>
  54. <!--See Note 4-->
  55. <li>
  56. <a class="rss" rel="alternate" href="<?php bloginfo('rss2_url'); ?>" title="Really Simply Syndication">RSS Feed</a>
  57. </li>
  58. </ul>
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement