Ver Mensaje Individual
  #4 (permalink)  
Antiguo 24/03/2010, 18:07
Avatar de netovs
netovs
 
Fecha de Ingreso: enero-2010
Ubicación: Mexico DF
Mensajes: 150
Antigüedad: 15 años
Puntos: 9
Respuesta: Incluir únicamente entradas en los resultados de búsqueda con Wordpress

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
  1. <?php while (have_posts()) : the_post(); ?>

Ahora viene lo bueno que editar:

Código PHP:
Ver original
  1. <a href="<?php the_permalink() ?>
  2. " rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
  3. <?php the_title(); ?></a> // el titulo del post
  4.  
  5. <?php the_excerpt() ?>
  6. <small><?php the_time('l, F jS, Y') ?></small> // LA fecha del POST
  7.  
  8. <p class="postmetadata">
  9. <?php the_tags('Tags: ', ', ', '<br />'); ?>  // Etiquetas que identifican al POST
  10. Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  
  11. <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
  12. </p>

Este link podria ser de utilidad: http://www.jtpratt.com/wordpress-hack-3-custom-search-results-page-and-template/