forked from italia/design-comuni-wordpress-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
executable file
·119 lines (113 loc) · 5.4 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?php
/**
* The template for displaying search results pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
*
* @package Design_Comuni_Italia
*/
global $load_card_type;
get_header();
?>
<main>
<h1 class="visually-hidden" id="search-container">Ricerca</h1>
<div class="container" id="main-container">
<div class="mb-md-5">
<?php get_template_part("template-parts/common/breadcrumb"); ?>
</div>
</div>
<div class="container">
<form role="search" id="search-form" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<div class="form-group cmp-input-search-button mt-2 mb-4 mb-lg-50">
<div class="input-group">
<div class="input-group-prepend">
<div class="input-group-text">
<svg class="icon icon-md">
<use
href="#it-search"
></use>
</svg>
</div>
</div>
<label for="search-input" class="active">Con Etichetta</label>
<input
type="search"
class="form-control"
id="search-input"
name="s"
value="<?php echo get_search_query(); ?>"
data-focus-mouse="false"
/>
</div>
<button
type="submit"
class="btn btn-primary"
>
<span class="">Cerca</span>
</button>
</div>
<div class="row justify-content-center">
<?php get_template_part("template-parts/search/filters"); ?>
<div class="col-lg-8 offset-lg-1">
<div class="d-flex justify-content-between align-items-center border-bottom border-light pb-3 mb-2">
<h2 class="visually-hidden" id="search-result">risultati di ricerca</h2>
<span class="search-results">
<strong><?php echo $wp_query->found_posts; ?></strong> Risultati
</span>
<button
type="button"
data-bs-toggle="modal"
data-bs-target="#modal-categories"
class="btn p-0 pe-2 d-lg-none"
>
<span class="rounded-icon">
<svg class="icon icon-primary icon-xs mb-1" aria-hidden="true">
<use href="#it-funnel"></use>
</svg>
</span>
<span class="t-primary title-xsmall-semi-bold ms-1">
Filtra
</span>
</button>
<button
type="button"
data-bs-toggle="modal"
data-bs-target="#"
class="btn p-0 pe-2 d-none d-lg-block"
onclick="location.href='?s=<?php echo get_search_query(); ?>'"
>
<span class="title-xsmall-semi-bold ms-1">Rimuovi tutti filtri</span>
</button>
</div>
<div class="container p-0">
<div class="row flex-column-reverse flex-lg-row">
<div class="col-12 pt-3">
<div id="load-more">
<?php if ( have_posts() ) : ?>
<?php
/* Start the Loop */
while ( have_posts() ) :
the_post();
$load_card_type = 'global-search';
get_template_part("template-parts/search/item");
endwhile; ?>
</div>
<?php get_template_part("template-parts/search/more-results"); ?>
<?php
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</div>
</div>
</div>
</div>
</div>
</form>
</div>
<?php echo get_template_part( 'template-parts/common/valuta-servizio'); ?>
<?php echo get_template_part( 'template-parts/common/assistenza-contatti'); ?>
<?php echo get_template_part( 'template-parts/search/filters-modal'); ?>
</main>
<?php
get_footer();