Lo primero es llegar a : wp-admin/theme-editor.php 
 
Del lado izquierdo busca el archivo que se llama Search Results (search.php) 
En este ciclo empieza donde salen los resultados de la búsqueda:   
Código PHP:
Ver original- <?php while (have_posts()) : the_post(); ?> 
Ahora viene lo bueno que editar:    
Código PHP:
Ver original- <a href="<?php the_permalink() ?> 
- " rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"> 
- <?php the_title(); ?></a> // el titulo del post 
-   
- <?php the_excerpt() ?> 
- <small><?php the_time('l, F jS, Y') ?></small> // LA fecha del POST 
-   
- <p class="postmetadata"> 
- <?php the_tags('Tags: ', ', ', '<br />'); ?>  // Etiquetas que identifican al POST 
- Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>   
- <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> 
- </p> 
Este link podria ser de utilidad: http://www.jtpratt.com/wordpress-hack-3-custom-search-results-page-and-template/