Advertisement
Guest User

Untitled

a guest
Nov 16th, 2012
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <?php
  2. /**
  3. * The Sidebar containing the primary widget area.
  4. *
  5.  
  6. */
  7. ?>
  8.  
  9. <div id="primary" class="widget-area grid4 sider" role="complementary" >
  10.  
  11. <ul class="xoxo">
  12.  
  13. <?php
  14.  
  15. if ( ! dynamic_sidebar( 'primary-widget-area' ) ) : ?>
  16.  
  17. <li id="archives" class="widget-container">
  18. <h3 class="widget-title"><?php _e( 'Archives', 'localize' ); ?></h3>
  19. <ul>
  20. <?php wp_get_archives( 'type=monthly' ); ?>
  21. </ul>
  22. </li>
  23.  
  24. <li id="meta" class="widget-container">
  25. <h3 class="widget-title"><?php _e( 'Meta', 'localize' ); ?></h3>
  26. <ul>
  27. <?php wp_register(); ?>
  28. <li><?php wp_loginout(); ?></li>
  29. <?php wp_meta(); ?>
  30. </ul>
  31. </li>
  32.  
  33. <?php endif; // end primary widget area ?>
  34. </ul>
  35. </div><!-- #primary .widget-area -->
  36.  
  37. <?php
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement