-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
34 lines (32 loc) · 1.22 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
24
25
26
27
28
29
30
31
32
33
34
<?php get_header(); ?>
<?php if (!have_posts()) : ?>
<div class="row">
<div class="col-12">
<h2 class="search-results__title"><?php printf('Busca por "%s"', get_search_query()); ?></h2>
</div>
</div>
<div class="alert alert-warning">
<p><?php _e('Nenhum resultado encontrado.', 'ifrs-portal-theme'); ?></p>
</div>
<?php else : ?>
<div class="row">
<div class="col-12">
<h2 class="search-results__title"><?php printf('Resultados da busca por "%s"', get_search_query()); ?></h2>
</div>
</div>
<?php while (have_posts()) : the_post(); ?>
<div class="row search-result">
<div class="col-12">
<h3 class="search-result__title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
</div>
<div class="col-12">
<p class="search-result__link"><?php the_permalink(); ?></p>
</div>
<div class="col-12">
<?php the_excerpt(); ?>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
<?php the_posts_navigation(array('next_text' => 'Resultados anteriores', 'prev_text' => 'Mais resultados', 'screen_reader_text' => ' ')); ?>
<?php get_footer(); ?>