Guest User

sidebar.php

a guest
Mar 8th, 2013
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <aside id="sidebar" class="grid_7 prefix_2 <?php echo of_get_option('blog_sidebar_pos') ?>">
  2. <?php if ( ! dynamic_sidebar( 'Sidebar' )) : ?>
  3. <div id="sidebar-search" class="widget">
  4. <?php echo '<h3>' . __('Search', 'theme1845') . '</h3>'; ?>
  5. <?php get_search_form(); ?> <!-- outputs the default Wordpress search form-->
  6. </div>
  7.  
  8. <div id="sidebar-nav" class="widget menu">
  9. <?php echo '<h3>' . __('Navigation', 'theme1845') . '</h3>'; ?>
  10. <?php wp_nav_menu( array('menu' => 'Sidebar Menu' )); ?> <!-- editable within the Wordpress backend -->
  11. </div>
  12.  
  13. <div id="sidebar-archives" class="widget">
  14. <?php echo '<h3>' . __('Archives', 'theme1845') . '</h3>'; ?>
  15. <ul>
  16. <?php wp_get_archives( 'type=monthly' ); ?>
  17. </ul>
  18. </div>
  19.  
  20. <div id="sidebar-meta" class="widget">
  21. <?php echo '<h3>' . __('Meta', 'theme1845') . '</h3>'; ?>
  22. <ul>
  23. <?php wp_register(); ?>
  24. <li><?php wp_loginout(); ?></li>
  25. <?php wp_meta(); ?>
  26. </ul>
  27. </div>
  28. <?php endif; ?>
  29. </aside><!--sidebar-->
Advertisement
Add Comment
Please, Sign In to add comment