-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsearch.php
More file actions
38 lines (32 loc) · 1.32 KB
/
search.php
File metadata and controls
38 lines (32 loc) · 1.32 KB
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
<?php get_header();
?>
<main class="main-page">
<div class="page-container">
<?php if ( have_posts() ) { ?>
<ul class="search-results">
<?php while ( have_posts() ) { the_post(); ?>
<li class="search-result">
<h3><a href="<?php echo esc_url(get_permalink()); ?>">
<?php the_title(); ?>
</a></h3>
<div class="search-result__image">
<?php the_post_thumbnail('medium') ?>
</div>
<div class="search-result__content">
<div class="h-readmore"> <a href="<?php the_permalink(); ?>">
<?php if ( function_exists ( 'pll_e' ) ){
pll_e( 'Lue lisää' );
}else{
echo 'Lue lisää';
} ?>
</a></div>
</div>
</li>
<hr>
<?php } ?>
</ul>
<?php echo paginate_links(); ?>
<?php } ?>
</div>
</main>
<?php get_footer(); ?>