-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
23 lines (23 loc) · 1.07 KB
/
search.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php get_header(); ?>
<div id="content">
<?php if(have_posts()): ?>
<h2 class="page-title">Resultados da busca</h2>
<?php while(have_posts()): the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h3><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
<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('<p>Leia o resto deste post »</p>'); ?>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Posts mais antigos') ?></div>
<div class="alignright"><?php previous_posts_link('Posts mais novos »') ?></div>
</div>
<?php else : ?>
<p class="msg-info">Nenhum post encontrado. Tente uma busca diferente.</p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>