-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
35 lines (35 loc) · 1.43 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
<?php get_header(); ?>
<div class="body">
<?php get_search_form() ?>
<div class="tag-title">
<div class="tag-title__name">Risultati trovati per</div>
<div class="tag-title__magazine">"<?php echo get_search_query(); ?>"</div>
</div>
<div class="home-grid">
<?php
while ( have_posts() ) : the_post(); ?>
<?php if ( ! is_page() ): ?>
<?php if ( $post->post_type === 'attachment' ) { ?>
<a href="<?php the_permalink() ?>" class="home-grid__cell">
<?php print $post->type ?>
<div class="home-grid__cell-post">
<div class="home-post__content--attachment">
<img src="<?php echo wp_get_attachment_image_src( $post->id, 'full' )[0] ?>"/>
</div>
</div>
</a>
<?php } else { ?>
<a href="<?php the_permalink() ?>" class="home-grid__cell">
<div class="home-grid__cell-post">
<div class="home-post__content">
<div class="home-post__title"><?php the_title(); ?></div>
<div class="home-post__excerpt"><?php the_excerpt(); ?></div>
</div>
</div>
</a>
<?php } ?>
<?php endif; ?>
<?php endwhile; ?>
</div>
</div>
<?php get_footer(); ?>