-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
34 lines (25 loc) · 1.11 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
23
24
25
26
27
28
29
30
31
32
33
34
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<span class="post-data"><?php the_time('j \d\e F \d\e Y') ?></span>
<h1 class="post-title"><?php the_title(); ?></h1>
<span class="lead"><?php (has_excerpt()) ? the_excerpt() : "" ; ?></span>
<div class="texto">
<?php the_content('<p class="serif">Leia mais</p>'); ?>
</div>
<?php if(function_exists('wp_print')) { print_link(); } ?>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<div class="post" id="post-0">
<h1 class="post-title">Erro! Nada Encontrado.</h1>
<p class="texto">
<p>Nenhum resultado satisfatório para sua busca. Tente um novo termo.</p>
<?php get_search_form(); ?>
</p>
</div>
</div>
<?php endif; ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>