Vinicius Cainelli 17 Denunciar post Postado Junho 22, 2012 Quando faço a busca, com uma palavra só, ou até mesmo uma letra, ele me retorna sempre 1 resultado apenas, e não tem nada a ver com a palavra que busquei, como resolvo isso? To usando o código assim... <?php /* Template Name: Custom Search Page */ ?> <?php get_header(); ?> <div class="wrap"> <div class="content"> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1> </div> <?php get_sidebar(); ?> </div> <?php get_footer(); ?> Compartilhar este post Link para o post Compartilhar em outros sites
Ted k' 126 Denunciar post Postado Junho 26, 2012 Falta você colocar o loop, o "while" Compartilhar este post Link para o post Compartilhar em outros sites
Vinicius Cainelli 17 Denunciar post Postado Junho 26, 2012 Valeuu man, agora sim.. <?php /* Template Name: Custom Search Page */ ?> <?php get_header(); ?> <div class="wrap"> <div class="content"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <h2 class="post-title"> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </h2> <?php endwhile; else: ?> <div class="entry"><h2><?php _e('Não foi encontrado nenhum conteúdo para sua pesquisa.'); ?></h2></div> <?php endif; ?> </div> <?php get_sidebar(); ?> </div> <?php get_footer(); ?> Compartilhar este post Link para o post Compartilhar em outros sites