Advertisement
Guest User

Untitled

a guest
Oct 25th, 2011
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.85 KB | None | 0 0
  1. <!-- begin left sidebar -->
  2.  
  3. <div id="navibar">
  4.     <div class="links">
  5.         <ul>
  6.             <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Left Navigation') ) : else : ?>
  7.  
  8.     <li><h2>Categories</h2>
  9.                 <ul>
  10.                 <?php wp_list_cats(); ?>
  11.                 </ul>
  12.     </li>
  13.  
  14. <?php wp_list_bookmarks(); ?>
  15.  
  16.     <li><h2><?php _e('Meta'); ?></h2>
  17.                 <ul>
  18.                     <?php wp_register(); ?>
  19.                     <li><?php wp_loginout(); ?></li>
  20.                     <li><a href="feed:<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
  21.                     <li><a href="feed:<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
  22.                     <?php wp_meta(); ?>
  23.                 </ul>
  24.     </li>
  25.  
  26. <?php if (function_exists('wp_theme_switcher')) { ?>
  27.  
  28.     <li><h2><?php _e('Themes'); ?></h2>
  29.                     <?php wp_theme_switcher(); ?>
  30.     </li>
  31. <?php } ?>
  32.  
  33. <?php endif; ?>
  34. </ul>
  35.  
  36.         </div> <!-- /links -->
  37. </div> <!-- /navibar -->
  38.  
  39. <!-- begin right sidebar -->
  40.  
  41. <div id="right">
  42.     <div class="links">
  43.         <ul>
  44.             <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Right Sidebar') ) : else : ?>
  45.  
  46. <!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.
  47.     <li><h2><?php _e('Author'); ?></h2>
  48.         <p>A little something about you, the author. Nothing lengthy, just an overview.</p>
  49.     </li>
  50.  
  51.  -->
  52.  
  53.     <li><h2><?php _e('Last Entries'); ?></h2>
  54.         <ul><?php get_archives('postbypost', '10', 'custom', '<li>', '</li>'); ?></ul>
  55.     </li>
  56.  
  57.     <li><h2><?php _e('Archives'); ?></h2>
  58.         <ul><?php wp_get_archives('type=monthly'); ?></ul>
  59.     </li>
  60.  
  61. <?php endif; ?>
  62. </ul>
  63.  
  64.         </div> <!-- /links -->
  65.     <div id="navi_end_right"> </div>
  66. </div> <!-- end right sidebar -->
  67.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement