-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
22 lines (22 loc) · 1.02 KB
/
single.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php get_header(); ?>
<div id="content">
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<h3 class="page-title"><?php the_category(', '); ?></h3>
<div class="post" id="post-<?php the_ID(); ?>">
<h1 class="post-title"><?php the_title(); ?></h1>
<p class="post-meta">Postado em <?php the_time('j/m/y'); ?>, em <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); comments_popup_link('Sem comentários »', '1 comentário »', '% comentários »'); ?></p>
<div class="entry">
<?php
the_content();
wp_link_pages(array('before' => '<p class="post-pagination"><span>Páginas</span>', 'after' => '</p>'));
the_tags('<p class="post-tags">Tags: ', ', ', '</p>');
?>
</div>
</div>
<div id="comments-wrapper" class="full-width-wrapper"><?php comments_template(); ?></div>
<?php endwhile; else: ?>
<p class="msg-info"><?php _e('Sorry, no records were found','lang'); ?></p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>