d7266c0c00
Nice to have, but optional, improvements it'd be nice to have: * Ability to have random rotating headers. (Core improvement to custom header functionality.) * Color and layout options. * More post formats. (Currently supporst Asides, Links, and Galleries.) * CMS-style slider home page option. Welcome, TwentyEleven née Duster. :) Track at #17198. git-svn-id: https://develop.svn.wordpress.org/trunk@17669 602fd350-edb4-49c9-b593-d223f7449a82
28 lines
735 B
PHP
28 lines
735 B
PHP
<?php
|
|
/**
|
|
* @package WordPress
|
|
* @subpackage Twenty Eleven
|
|
*/
|
|
?>
|
|
<div id="secondary" class="widget-area" role="complementary">
|
|
<?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
|
|
|
|
<aside id="archives" class="widget">
|
|
<h1 class="widget-title"><?php _e( 'Archives', 'twentyeleven' ); ?></h1>
|
|
<ul>
|
|
<?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
|
|
</ul>
|
|
</aside>
|
|
|
|
<aside id="meta" class="widget">
|
|
<h1 class="widget-title"><?php _e( 'Meta', 'twentyeleven' ); ?></h1>
|
|
<ul>
|
|
<?php wp_register(); ?>
|
|
<li><?php wp_loginout(); ?></li>
|
|
<?php wp_meta(); ?>
|
|
</ul>
|
|
</aside>
|
|
|
|
<?php endif; // end sidebar widget area ?>
|
|
</div><!-- #secondary .widget-area -->
|
|
|