-
Notifications
You must be signed in to change notification settings - Fork 1
/
search.php
30 lines (28 loc) · 853 Bytes
/
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
<?php get_header(); ?>
<main class="container mx-auto px-4 py-8">
<h2><?php printf(
__("Search Results for: %s"),
"<span>" . get_search_query() . "</span>"
); ?></h2>
<?php if (have_posts()):
while (have_posts()):
the_post(); ?>
<article>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p><?php the_date(); ?></p>
<div><?php the_excerpt(); ?></div>
</article>
<?php
endwhile;
else:
?>
<p><?php _e("Sorry, no posts matched your criteria."); ?></p>
<?php
endif; ?>
</main>
<div class="col-span-1">
<div class="sticky top-0">
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>