forked from telabotanica/wp-theme-telabotanica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
191 lines (153 loc) · 5.48 KB
/
single.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<?php
/**
* Post
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php if ( have_posts() ) : ?>
<div class="layout-central-col">
<div class="layout-wrapper">
<?php while ( have_posts() ) : the_post(); ?>
<aside class="layout-aside">
<?php the_telabotanica_module('meta-news'); ?>
</aside>
<div class="layout-content">
<?php the_telabotanica_module('breadcrumbs'); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'article' ); ?>>
<?php
if ( post_is_in_descendant_category( 'offres-emploi' ) && has_post_thumbnail() ) :
the_post_thumbnail( 'post-thumbnail', ['class' => 'article-thumbnail'] );
endif;
the_title( '<h1 class="article-title">', '</h1>' );
if ( post_is_in_descendant_category( 'evenements' ) ) :
the_telabotanica_module('event-dates', [
'modifiers' => get_field('image') ? 'absolute' : 'float-left'
]);
if ( get_field('image') ) :
the_telabotanica_component('image');
endif;
endif;
if ( get_field('intro') ) :
the_telabotanica_component('intro', [
'text' => get_field('intro')
]);
endif;
// OFFRE D'EMPLOI
if ( post_is_in_descendant_category( 'offres-emploi' ) ) :
if ( get_field('context') ) :
the_telabotanica_component('title', [
'title' => __( "Contexte", 'telabotanica' )
]);
the_telabotanica_component('text', [
'text' => get_field('context')
]);
endif;
if ( get_field('missions') ) :
the_telabotanica_component('title', [
'title' => __( "Missions", 'telabotanica' )
]);
the_telabotanica_component('text', [
'text' => get_field('missions')
]);
endif;
if ( get_field('profile') ) :
the_telabotanica_component('title', [
'title' => __( "Profil recherché", 'telabotanica' )
]);
the_telabotanica_component('text', [
'text' => get_field('profile')
]);
endif;
if ( get_field('conditions') ) :
the_telabotanica_component('title', [
'title' => __( "Poste et conditions", 'telabotanica' )
]);
the_telabotanica_component('text', [
'text' => get_field('conditions')
]);
endif;
if ( get_field('how_to_apply') ) :
the_telabotanica_component('title', [
'title' => __( "Modalités de candidature", 'telabotanica' )
]);
the_telabotanica_component('text', [
'text' => get_field('how_to_apply')
]);
endif;
endif; // FIN OFFRE D'EMPLOI
if ( get_field('description') ) :
the_telabotanica_component('text', [
'text' => get_field('description')
]);
endif;
if ( !empty( get_the_content() ) ) :
the_telabotanica_component('text', [
'text' => apply_filters('the_content', get_the_content())
]);
endif;
// EN KIOSQUE
if ( has_category('en-kiosque') ) :
if ( get_field('author') ) :
the_telabotanica_component('title', [
'title' => __( "L'auteur", 'telabotanica' )
]);
the_telabotanica_component('text', [
'text' => get_field('author')
]);
endif;
if ( get_field('references') ) :
the_telabotanica_component('title', [
'title' => __( "Informations pratiques", 'telabotanica' )
]);
the_telabotanica_component('text', [
'text' => get_field('references')
]);
endif;
if ( get_field('how_to_buy') ) :
the_telabotanica_component('title', [
'title' => __( "Comment se procurer l'ouvrage ?", 'telabotanica' )
]);
the_telabotanica_component('text', [
'text' => get_field('how_to_buy')
]);
endif;
endif; // FIN EN KIOSQUE
// Si la page utilise des composants
if( have_rows('components') ) :
// On boucle sur les composants
while ( have_rows('components') ) : the_row();
the_telabotanica_component(get_row_layout(), []);
endwhile;
endif;
// EVENEMENT
if ( post_is_in_descendant_category( 'evenements' ) ) :
$info_items = [];
$info_items[] = [
'title' => 'Adresse',
'text' => get_field('place')->value
];
$info_items[] = [
'title' => 'Tarif',
'text' => get_field('is_free') === true ? __( 'Gratuit', 'telabotanica') : get_field('prices')
];
the_telabotanica_component('info', [
'items' => $info_items
]);
the_telabotanica_component('map');
endif; // FIN EVENEMENT
if ( get_field('contact_info') && !empty( get_field('contact_info')['contact'][0]['name'] ) ) {
the_telabotanica_component('contact', get_field('contact_info')['contact'][0]);
}
?>
</article>
</div>
<?php endwhile; ?>
</div>
</div>
<?php
comments_template();
endif; ?>
</main><!-- .site-main -->
</div><!-- .content-area -->
<?php get_footer(); ?>