Advertisement
Guest User

sidebar2

a guest
Feb 7th, 2012
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. <div class="side-bar-right maxheight">
  2. <div class="ind maxheight">
  3.  
  4. <?php /* Widgetized sidebar, if you have the plugin installed. */
  5.  
  6. if ( function_exists('dynamic_sidebar') && dynamic_sidebar(__('Right Sidebar','theme778')) ) : else : ?>
  7.  
  8. <div class="widget" id="archives">
  9. <h2><?php _e('Archives','theme778'); ?></h2>
  10. <div class="inside-widget">
  11. <ul>
  12. <?php wp_get_archives('type=monthly'); ?>
  13. </ul>
  14. </div>
  15. </div>
  16. <!--
  17. <div class="widget" id="recentposts">
  18. <h2><?php _e('Text block','theme778'); ?></h2>
  19. <div class="textwidget">
  20. Praesent vestibulum molestie lacus. Aenean nonummy hendrerit mauris. Phasellus porta. <a href="#">Fusce suscipit</a> varius mi. Cum sociis natoque penatibus et.
  21. </div>
  22. </div>
  23. -->
  24. <div>
  25. <<?php if (!(current_user_can('level_0'))){ ?>
  26. <h2>Login</h2>
  27. <form action="<?php echo get_option('home'); ?>/wp-login.php" method="post">
  28. <input type="text" name="log" id="log" value="<?php echo wp_specialchars(stripslashes($user_login), 1) ?>" size="20" />
  29. <input type="password" name="pwd" id="pwd" size="20" />
  30. <input type="submit" name="submit" value="Send" class="button" />
  31. <p>
  32. <label for="rememberme"><input name="rememberme" id="rememberme" type="checkbox" checked="checked" value="forever" /> Remember me</label>
  33. <input type="hidden" name="redirect_to" value="<?php echo $_SERVER['REQUEST_URI']; ?>" />
  34. </p>
  35. </form>
  36. <a href="<?php echo get_option('home'); ?>/wp-login.php?action=lostpassword">Recover password</a>
  37. <?php } else { ?>
  38. <h2>Logout</h2>
  39. <a href="<?php echo wp_logout_url(urlencode($_SERVER['REQUEST_URI'])); ?>">logout</a><br />
  40. <a href="http://XXX/wp-admin/">admin</a>
  41. <?php }?>
  42. </div>
  43.  
  44. <?php wp_list_bookmarks('title_before=<h2>
  45. &title_after=</h2>
  46. <div class="inside-widget">
  47. &category_before=<div class="widget widget_links %class" id="%id">
  48. &category_after=</div>
  49. </div>'); ?>
  50.  
  51. <?php endif; ?>
  52.  
  53. </div>
  54. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement