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(); ?>