windhamdavid 7 years ago
parent
commit
37bb03d810
1 changed files with 4 additions and 3 deletions
  1. 4 3
      page-desk.php

+ 4 - 3
page-desk.php

@@ -15,14 +15,15 @@ get_header(); ?>
 			<div class="col-sm-5">
 				<div class="entry-content">
 					<h4 class="georgia spread"><em><span class="firstcharacter">T</span>he internet is awash with nonsense and people that really want to be heard</em>. That's not exactly the case for me and I'm not planning on adding to the nonsense. I've spent too much time working on websites for other folks to really concern myself with my own. However, I've grown really tired of communicating using third party websites and I wanted to use this as a way to archive any notes, ideas, or anything I want to share. Right now, this site is clogged up with lots of old posts about mostly computer related ramblings, but I'll clean that up over time.</h4>
-
+					<h4 class="georgia spread">I've now gotten to where I need this search box for finding my own content:</h4>
+					<?php get_search_form(); ?>
 				</div>
 			</div>
 			<div class="col-sm-3 studio-tools">
 				<ul>
 					<li>Recent Posts</li>
-					<?php $recentposts = get_posts('numberposts=13'); foreach ($recentposts as $post) : setup_postdata($post); ?>
-					       <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
+					<?php $recentposts = get_posts('numberposts=25'); foreach ($recentposts as $post) : setup_postdata($post); ?>
+					       <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a> - <?php the_date('n/y'); ?></li>
 					<?php endforeach; ?>
 				</ul>
 			</div>