<?php $recent_posts = get_posts( array( 'numberposts' => 10 ) ); ?> <?php if ( $recent_posts ) : ?> <h2><?php _e( 'Recently', 'hemingway' ); ?></h2> <ul class="dates"> <?php foreach ( $recent_posts as $post ) : ?> <?php setup_postdata( $post ); ?> <li><a href="<?php the_permalink() ?>"><span class="date"><?php the_time( 'm.d' ) ?></span><?php the_title() ?></a></li> <?php endforeach; ?> <?php wp_reset_postdata(); ?> </ul> <?php endif; ?>