single.php does not work

Asked

Viewed 49 times

0

I have in my index 3 posts and when I click to open it through a permalink enters the single.php. so far so good, appears the link in the browser calling the post, but the page is blank.

I did so in single.php code


Calling the content-single.php


    <div class="container">
        <h1><?php the_title(); ?></h1>
        <div class="row">
            <div class="col-md-6 text-left"><p>Data: <?php echo get_the_date(); ?></p></div>
            <div class="col-md-6 text-right"><p>Por: <?php the_author_posts_link(); ?></p></div>
        </div>

        <p><?php the_tags('Tags: ', ' , '); ?></p>

        <h4><?php the_excerpt(); ?></h4>
    </div>
</header>
    <div class="content"><?php the_content(); ?></div>

1 answer

-3

This is the single.php I used to call the permalink

Browser other questions tagged

You are not signed in. Login or sign up in order to post.