sidebar.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. /**
  3. * Sidebar Template
  4. *
  5. * Please do not edit this file. This file is part of the Cyber Chimps Framework and all modifications
  6. * should be made in a child theme.
  7. *
  8. * @category CyberChimps Framework
  9. * @package Framework
  10. * @since 1.0
  11. * @author CyberChimps
  12. * @license http://www.opensource.org/licenses/gpl-license.php GPL v3.0 (or later)
  13. * @link http://www.cyberchimps.com/
  14. */
  15. ?>
  16. <div id="secondary" <?php cyberchimps_filter_sidebar_right_class(); ?>>
  17. <?php do_action( 'cyberchimps_before_sidebar' ); ?>
  18. <div id="sidebar">
  19. <?php if( !dynamic_sidebar( 'sidebar-right' ) ) : ?>
  20. <div class="widget-container">
  21. <h3 class="widget-title"><?php _e( 'Pages', 'business-lite' ); ?></h3>
  22. <ul>
  23. <?php wp_list_pages( 'title_li=' ); ?>
  24. </ul>
  25. </div>
  26. <div class="widget-container">
  27. <h3 class="widget-title"><?php _e( 'Archives', 'business-lite' ); ?></h3>
  28. <ul>
  29. <?php wp_get_archives( 'type=monthly' ); ?>
  30. </ul>
  31. </div>
  32. <div class="widget-container">
  33. <h3 class="widget-title"><?php _e( 'Categories', 'business-lite' ); ?></h3>
  34. <ul>
  35. <?php wp_list_categories( 'show_count=1&title_li=' ); ?>
  36. </ul>
  37. </div>
  38. <div class="widget-container">
  39. <h3 class="widget-title"><?php _e( 'WordPress', 'business-lite' ); ?></h3>
  40. <ul>
  41. <?php wp_register(); ?>
  42. <li><?php wp_loginout(); ?></li>
  43. <li><a href="<?php echo esc_url( 'http://wordpress.org/' ); ?>" target="_blank"
  44. title="<?php esc_attr_e( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.', 'business-lite' ); ?>"> <?php _e( 'WordPress', 'business-lite' ); ?></a>
  45. </li>
  46. <?php wp_meta(); ?>
  47. </ul>
  48. </div>
  49. <div class="widget-container">
  50. <h3 class="widget-title"><?php _e( 'Subscribe', 'business-lite' ); ?></h3>
  51. <ul>
  52. <li><a href="<?php bloginfo( 'rss2_url' ); ?>"><?php _e( 'Entries (RSS)', 'business-lite' ); ?></a></li>
  53. <li><a href="<?php bloginfo( 'comments_rss2_url' ); ?>"><?php _e( 'Comments (RSS)', 'business-lite' ); ?></a></li>
  54. </ul>
  55. </div>
  56. <?php endif; ?>
  57. </div>
  58. <!-- #sidebar -->
  59. <?php do_action( 'cyberchimps_after_sidebar' ); ?>
  60. </div><!-- #secondary -->