Ver Mensaje Individual
  #5 (permalink)  
Antiguo 25/03/2010, 05:04
codig0
 
Fecha de Ingreso: septiembre-2008
Ubicación: Lanzarote, Canarias
Mensajes: 486
Antigüedad: 16 años, 4 meses
Puntos: 41
Respuesta: Incluir únicamente entradas en los resultados de búsqueda con Wordpress

No tienes que editar nada de los archivos de wordpress... edita el search.php de tu template, busca lo siguiente:

Código:
		<?php while (have_posts()) : the_post(); ?>
y POR ENCIMA pon esto otro:

Código:
<?php
function filtrar_post($where = '') {
$where .= " AND post_type='post'";
return $where;
}
add_filter('posts_where', 'filtrar_post');
query_posts($query_string);
?>
quedando de esta manera:

Código:
<?php
function filtrar_post($where = '') {
$where .= " AND post_type='post'";
return $where;
}
add_filter('posts_where', 'filtrar_post');
query_posts($query_string);
?>

		<?php while (have_posts()) : the_post(); ?>