-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch.php
77 lines (69 loc) · 3.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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php get_header(); ?>
<!-- ========================
page title
=========================== -->
<section class="page-title page-title-layout16 text-center bg-parallax">
<div class="bg-img"><img src="<?php echo get_stylesheet_directory_uri(); ?>/assets/images/backgrounds/bg-preto.png" alt="background"></div>
<div class="container">
<div class="row">
<div class="col-12">
<h1 class="pagetitle__heading mb-10">Resultado da Busca para: <?php echo get_search_query(); ?></h1>
<nav>
<ol class="breadcrumb justify-content-center mb-0">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Busca</li>
</ol>
</nav>
</div><!-- /.col-12 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.page-title -->
<!-- ======================
Blog Grid
========================= -->
<section class="blog-grid">
<div class="container">
<div class="row">
<!-- post Item #1 -->
<?php if (have_posts() ) : while (have_posts() ) : the_post(); ?>
<!-- Blog Item #1 -->
<div class="col-sm-12 col-md-4 col-lg-4">
<div class="post-item">
<div align="center" class="post__img">
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('medium')?>
</div><!-- /.blog-img -->
<div class="post__content">
<div class="post__meta d-flex flex-wrap">
<!-- <div class="post__meta-cat">
<a href="#">Consulting</a><a href="#">Sales</a>
</div> /.blog-meta-cat -->
<span class="post__meta-date"><?php echo get_the_date(); ?></span>
</div>
<h4 class="post__title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</h4>
<p class="post__desc"><?php echo get_excerpt(); ?>
</p>
<a href="<?php the_permalink(); ?>" target="_blank" class="btn btn__secondary btn__link">
<span>Leia Mais</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.blog-content -->
</div><!-- /.post-item -->
</div><!-- /.col-lg-4 -->
<?php endwhile;?>
</div><!-- /.row -->
<div class="row">
<div class="col-12 text-center">
<nav class="pagination-area">
<ul class="pagination justify-content-center mb-0">
<li><?php previous_posts_link('<i class="icon-arrow-left"></i>'); ?></li>
<li><?php next_posts_link('<i class="icon-arrow-right"></i>'); ?></li>
</ul>
</nav><!-- .pagination-area -->
<?php else : endif; ?>
</div><!-- /.col-12 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.blog Grid -->
<?php get_footer(); ?>