7
respostas

Single

Olá! Quando eu clico no link das casas no index, a url entra na determinada casa, mas a tela continua no index mostrando as 3 casas. fiz a page do single tudo certinho, mas acho que não pegou.

7 respostas

Oi Fernanda !

Vc chegou a criar o arquivo single.php?

Creio que seria interessante postar o single.php para ajudar a identificar o que pode estar acontecendo.

Aqui segue um exemplo bem simples deste arquivo:

<?php get_header(); ?>

<main>

    <article>
    <?php wp_reset_query(); ?>
        <?php if( have_posts() ) {
            while( have_posts() ) {
                the_post(); ?>

        <div class="single-imovel-thumbnail">
            <?php the_post_thumbnail(); ?>
        </div>

        <div class="container">
            <section class="chamada-principal">
                <h1><?php the_title(); ?></h1>
            </section>

            <section class="single-imovel-geral">

                <div class="single-imovel-descricao">
                    <?php the_content(); ?>
                    <?php the_permalink(); ?>

                </div>


            </section>

            <span class="single-imovel-data">
             <?php the_date(); ?>
            </span>


        </div>

        <?php }
        } ?>

    </article>

</main>



<?php get_footer(); ?>

<?php get_header(); ?>

<?php if( have_posts() ) { while( have_posts() ) { the_post(); ?>

<?php the_post_thumbnail(); ?>

<?php the_title(); ?>

<?php the_content(); ?>

<?php the_date(); ?>

<?php } } ?>

ops

<?php get_header(); ?>

<main>

    <article>

        <?php if( have_posts() ) {
            while( have_posts() ) {
                the_post(); ?>

        <div class="single-imovel-thumbnail">
            <?php the_post_thumbnail(); ?>
        </div>

        <div class="container">
            <section class="chamada-principal">
                <h1><?php the_title(); ?></h1>
            </section>

            <section class="single-imovel-geral">

                <div class="single-imovel-descricao">
                    <?php the_content(); ?>
                </div>


            </section>

            <span class="single-imovel-data">
             <?php the_date(); ?>
            </span>


        </div>

        <?php }
        } ?>

    </article>

</main>

Oi Fernanda!

O seu single.php parece certo, se certifica de que o nome do arquivo é realmente single.php? Perfeito sem erros?

Se tiver algum erro no nome o wordpress não vai achar e vai dar o problema q vc está tendo.

Oie gente, eu segui as aulas e tive o mesmo problema. Sempre que clicava na imagem do imóvel, ficava linkando para a index novamente. Lendo outras respostas aqui no fórum, eu fui em Configurações, Permalink e dei um Salvar. E isso resolveu. Acho que o WP atualiza as informações de permalink que criamos. (=

Realmente Aparecida resolveu esta com o mesmo problema