Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

115 righe
4.0 KiB

  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. <!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.
  26. <li><h2><?php _e('Author'); ?></h2>
  27. <p>A little something about you, the author. Nothing lengthy, just an overview.</p>
  28. </li>
  29. -->
  30. <?php if ( is_404() || is_category() || is_day() || is_month() ||
  31. is_year() || is_search() || is_paged() ) :
  32. ?> <li>
  33. <?php if ( is_404() ) : /* If this is a 404 page */ ?>
  34. <?php elseif ( is_category() ) : /* If this is a category archive */ ?>
  35. <p><?php /* translators: %s: category name */
  36. printf( __( 'You are currently browsing the archives for the %s category.' ),
  37. single_cat_title( '', false )
  38. );
  39. ?></p>
  40. <?php elseif ( is_day() ) : /* If this is a daily archive */ ?>
  41. <p><?php /* translators: 1: site link, 2: archive date */
  42. printf( __( 'You are currently browsing the %1$s blog archives for the day %2$s.' ),
  43. sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
  44. get_the_time( __( 'l, F jS, Y' ) )
  45. );
  46. ?></p>
  47. <?php elseif ( is_month() ) : /* If this is a monthly archive */ ?>
  48. <p><?php /* translators: 1: site link, 2: archive month */
  49. printf( __( 'You are currently browsing the %1$s blog archives for %2$s.' ),
  50. sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
  51. get_the_time( __( 'F, Y' ) )
  52. );
  53. ?></p>
  54. <?php elseif ( is_year() ) : /* If this is a yearly archive */ ?>
  55. <p><?php /* translators: 1: site link, 2: archive year */
  56. printf( __( 'You are currently browsing the %1$s blog archives for the year %2$s.' ),
  57. sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
  58. get_the_time( 'Y' )
  59. );
  60. ?></p>
  61. <?php elseif ( is_search() ) : /* If this is a search result */ ?>
  62. <p><?php /* translators: 1: site link, 2: search query */
  63. printf( __( 'You have searched the %1$s blog archives for <strong>&#8216;%2$s&#8217;</strong>. If you are unable to find anything in these search results, you can try one of these links.' ),
  64. sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
  65. esc_html( get_search_query() )
  66. );
  67. ?></p>
  68. <?php elseif ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) : /* If this set is paginated */ ?>
  69. <p><?php /* translators: %s: site link */
  70. printf( __( 'You are currently browsing the %s blog archives.' ),
  71. sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) )
  72. );
  73. ?></p>
  74. <?php endif; ?>
  75. </li>
  76. <?php endif; ?>
  77. </ul>
  78. <ul role="navigation">
  79. <?php wp_list_pages('title_li=<h2>' . __('Pages') . '</h2>' ); ?>
  80. <li><h2><?php _e('Archives'); ?></h2>
  81. <ul>
  82. <?php wp_get_archives(array('type' => 'monthly')); ?>
  83. </ul>
  84. </li>
  85. <?php wp_list_categories(array('show_count' => 1, 'title_li' => '<h2>' . __('Categories') . '</h2>')); ?>
  86. </ul>
  87. <ul>
  88. <?php if ( is_home() || is_page() ) { /* If this is the frontpage */ ?>
  89. <?php wp_list_bookmarks(); ?>
  90. <li><h2><?php _e('Meta'); ?></h2>
  91. <ul>
  92. <?php wp_register(); ?>
  93. <li><?php wp_loginout(); ?></li>
  94. <?php wp_meta(); ?>
  95. </ul>
  96. </li>
  97. <?php } ?>
  98. <?php endif; /* ! dynamic_sidebar() */ ?>
  99. </ul>
  100. </div>