forked from italia/design-scuole-wordpress-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive-struttura.php
executable file
·124 lines (116 loc) · 7.46 KB
/
archive-struttura.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
120
121
122
123
124
<?php
/**
* The template for displaying search results pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
*
* @package Design_Scuole_Italia
*/
get_header();
?>
<main id="main-container" class="main-container redbrown">
<?php get_template_part("template-parts/common/breadcrumb"); ?>
<?php
get_template_part("template-parts/hero/strutture");
// recupero la lista delle strutture
$i=0;
$strutture_organizzazione = dsi_get_option("strutture_organizzazione", "organizzazione");
if (is_array($strutture_organizzazione) && count($strutture_organizzazione)) {
foreach ($strutture_organizzazione as $id_tipologia_struttura) {
$tipologia_struttura = get_term_by("id", $id_tipologia_struttura, "tipologia-struttura");
if (!is_wp_error($tipologia_struttura) && $tipologia_struttura) {
$haschild = false;
$strutture = get_posts("post_type=struttura&tipologia-struttura=" . $tipologia_struttura->slug . "&posts_per_page=-1&orderby=post_parent&order=ASC");
$strutture_parent = get_posts("post_type=struttura&tipologia-struttura=" . $tipologia_struttura->slug . "&post_parent=0&posts_per_page=-1&orderby=title&order=ASC");
if (is_array($strutture) && count($strutture) > 0) {
$i++;
$classcolor = "bg-white";
if ($i % 2)
$classcolor = "bg-gray-light";
foreach ($strutture_parent as $child){
$strutture_child = get_posts("post_type=struttura&tipologia-struttura=" . $tipologia_struttura->slug . "&post_parent=".$child->ID."&posts_per_page=1&orderby=title&order=ASC");
if(is_array($strutture_child) && count($strutture_child)>0)
$haschild = true;
}
?>
<section class="section section-padding <?php echo $classcolor; ?>">
<div class="container">
<?php if($i == 1)
echo '<h2 class="sr-only">elenco degli organi</h2>';
?>
<?php if($haschild){ // adotto la struttura a 2 colonne ?>
<div class="title-section mb-5">
<h2 class="h4"><a href="<?php echo get_term_link($tipologia_struttura); ?>">
<?php if (count($strutture) > 1) echo dsi_pluralize_string($tipologia_struttura->name); else echo $tipologia_struttura->name; ?>
</a>
</h2>
</div><!-- /title-large -->
<?php foreach ($strutture_parent as $struttura) { ?>
<div class="row variable-gutters mb-4">
<div class="col-lg-4 mb-4">
<?php
if(dsi_is_scuola($struttura))
get_template_part("template-parts/struttura/card", "dark-codice");
else
get_template_part("template-parts/struttura/card", "dark");
?>
</div><!-- /col-lg-3 -->
<div class="col-lg-8">
<div class="row variable-gutters">
<?php
$strutture_child = get_posts("post_type=struttura&tipologia-struttura=" . $tipologia_struttura->slug . "&post_parent=" . $struttura->ID . "&posts_per_page=-1&orderby=title&order=ASC");
foreach ($strutture_child as $struttura) {
?>
<div class="col-lg-6 lg-6 mb-4">
<?php
if(dsi_is_scuola($struttura))
get_template_part("template-parts/struttura/card", "codice");
else
get_template_part("template-parts/struttura/card");
?>
</div><!-- /col-lg-4 -->
<?php
}
?>
</div><!-- /row -->
</div><!-- /col-lg-9 -->
</div><!-- /row -->
<?php
}
}else{ // struttura classica
if (is_array($strutture) && count($strutture) > 0) {
?>
<div class="title-section mb-5">
<h2 class="h4"><a href="<?php echo get_term_link($tipologia_struttura); ?>"><?php if (count($strutture) > 1) echo dsi_pluralize_string($tipologia_struttura->name); else echo $tipologia_struttura->name; ?></a>
</h2>
</div><!-- /title-large -->
<div class="row variable-gutters mt-4">
<div class="col-lg-12">
<div class="row variable-gutters">
<?php
foreach ($strutture as $struttura) {
?>
<div class="col-lg-4 mb-4">
<?php get_template_part("template-parts/struttura/card"); ?>
</div><!-- /col-lg-4 -->
<?php
}
?>
</div><!-- /row -->
</div><!-- /col-lg-9 -->
</div><!-- /row -->
<?php
}
}
?>
</div><!-- /container -->
</section><!-- /section -->
<?php
}
}
}
}
?>
</main>
<?php
get_footer();