home *** CD-ROM | disk | FTP | other *** search
/ HTML Examples / WP.iso / wordpress2 / wp-includes / theme-compat / sidebar.php < prev   
Encoding:
PHP Script  |  2016-07-06  |  4.0 KB  |  115 lines

  1. <?php
  2. /**
  3.  * @package WordPress
  4.  * @subpackage Theme_Compat
  5.  * @deprecated 3.0.0
  6.  *
  7.  * This file is here for backward compatibility with old themes and will be removed in a future version.
  8.  */
  9. _deprecated_file(
  10.     /* translators: %s: template name */
  11.     sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ),
  12.     '3.0.0',
  13.     null,
  14.     /* translators: %s: template name */
  15.     sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) )
  16. );
  17. ?>
  18.     <div id="sidebar" role="complementary">
  19.         <ul>
  20.             <?php     /* Widgetized sidebar, if you have the plugin installed. */
  21.                     if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
  22.             <li>
  23.                 <?php get_search_form(); ?>
  24.             </li>
  25.  
  26.             <!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.
  27.             <li><h2><?php _e('Author'); ?></h2>
  28.             <p>A little something about you, the author. Nothing lengthy, just an overview.</p>
  29.             </li>
  30.             -->
  31.  
  32.             <?php if ( is_404() || is_category() || is_day() || is_month() ||
  33.                         is_year() || is_search() || is_paged() ) :
  34.             ?> <li>
  35.  
  36.             <?php if ( is_404() ) : /* If this is a 404 page */ ?>
  37.             <?php elseif ( is_category() ) : /* If this is a category archive */ ?>
  38.                 <p><?php /* translators: %s: category name */
  39.                     printf( __( 'You are currently browsing the archives for the %s category.' ),
  40.                         single_cat_title( '', false )
  41.                     );
  42.                 ?></p>
  43.  
  44.             <?php elseif ( is_day() ) : /* If this is a daily archive */ ?>
  45.                 <p><?php /* translators: 1: site link, 2: archive date */
  46.                     printf( __( 'You are currently browsing the %1$s blog archives for the day %2$s.' ),
  47.                         sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
  48.                         get_the_time( __( 'l, F jS, Y' ) )
  49.                     );
  50.                 ?></p>
  51.  
  52.             <?php elseif ( is_month() ) : /* If this is a monthly archive */ ?>
  53.                 <p><?php /* translators: 1: site link, 2: archive month */
  54.                     printf( __( 'You are currently browsing the %1$s blog archives for %2$s.' ),
  55.                         sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
  56.                         get_the_time( __( 'F, Y' ) )
  57.                     );
  58.                 ?></p>
  59.  
  60.             <?php elseif ( is_year() ) : /* If this is a yearly archive */ ?>
  61.                 <p><?php /* translators: 1: site link, 2: archive year */
  62.                     printf( __( 'You are currently browsing the %1$s blog archives for the year %2$s.' ),
  63.                         sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
  64.                         get_the_time( 'Y' )
  65.                     );
  66.                 ?></p>
  67.  
  68.             <?php elseif ( is_search() ) : /* If this is a search result */ ?>
  69.                 <p><?php /* translators: 1: site link, 2: search query */
  70.                     printf( __( 'You have searched the %1$s blog archives for <strong>‘%2$s’</strong>. If you are unable to find anything in these search results, you can try one of these links.' ),
  71.                         sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
  72.                         esc_html( get_search_query() )
  73.                     );
  74.                 ?></p>
  75.  
  76.             <?php elseif ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) : /* If this set is paginated */ ?>
  77.                 <p><?php /* translators: %s: site link */
  78.                     printf( __( 'You are currently browsing the %s blog archives.' ),
  79.                         sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) )
  80.                     );
  81.                 ?></p>
  82.  
  83.             <?php endif; ?>
  84.  
  85.             </li>
  86.         <?php endif; ?>
  87.         </ul>
  88.         <ul role="navigation">
  89.             <?php wp_list_pages('title_li=<h2>' . __('Pages') . '</h2>' ); ?>
  90.  
  91.             <li><h2><?php _e('Archives'); ?></h2>
  92.                 <ul>
  93.                 <?php wp_get_archives(array('type' => 'monthly')); ?>
  94.                 </ul>
  95.             </li>
  96.  
  97.             <?php wp_list_categories(array('show_count' => 1, 'title_li' => '<h2>' . __('Categories') . '</h2>')); ?>
  98.         </ul>
  99.         <ul>
  100.             <?php if ( is_home() || is_page() ) { /* If this is the frontpage */ ?>
  101.                 <?php wp_list_bookmarks(); ?>
  102.  
  103.                 <li><h2><?php _e('Meta'); ?></h2>
  104.                 <ul>
  105.                     <?php wp_register(); ?>
  106.                     <li><?php wp_loginout(); ?></li>
  107.                     <?php wp_meta(); ?>
  108.                 </ul>
  109.                 </li>
  110.             <?php } ?>
  111.  
  112.             <?php endif; /* ! dynamic_sidebar() */ ?>
  113.         </ul>
  114.     </div>
  115.