-
Notifications
You must be signed in to change notification settings - Fork 216
/
single-post.php
executable file
·159 lines (148 loc) · 8.31 KB
/
single-post.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
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package Design_Scuole_Italia
*/
global $post, $autore, $luogo, $c, $badgeclass;
$args = ["post", "evento", "circolare"];
get_template_part("template-parts/single/related-posts");
get_header();
$link_schede_documenti = dsi_get_meta("link_schede_documenti");
$file_documenti = dsi_get_meta("file_documenti");
$luoghi = dsi_get_meta("luoghi");
$persone = dsi_get_meta("persone");
$user_can_view_post = dsi_members_can_user_view_post(get_current_user_id(), $post->ID);
?>
<main id="main-container" class="main-container greendark">
<?php get_template_part("template-parts/common/breadcrumb"); ?>
<?php while ( have_posts() ) :
the_post();
set_views($post->ID);
get_template_part("template-parts/single/header-post");
?>
<section class="section bg-white py-5">
<div class="container">
<div class="row variable-gutters">
<?php if($user_can_view_post): ?>
<div class="col-lg-9 col-md-8 order-lg-1">
<article class="article-wrapper pt-4">
<div class="row variable-gutters">
<div class="col-lg-8 wysiwig-text">
<?php
the_content();
?>
</div>
</div>
<?php if (!post_password_required()) { if((is_array($link_schede_documenti) && count($link_schede_documenti)>0) || (is_array($file_documenti) && count($file_documenti)>0)) { ?>
<h2 class="mb-4 h4"><?php _e("Documenti", "design_scuole_italia"); ?></h2>
<div class="row variable-gutters">
<div class="col-lg-12">
<div class="card-deck card-deck-spaced">
<?php
if(is_array($link_schede_documenti) && count($link_schede_documenti)>0) {
global $documento;
foreach ( $link_schede_documenti as $link_scheda_documento ) {
$documento = get_post( $link_scheda_documento );
get_template_part( "template-parts/documento/card" );
}
}
global $idfile, $nomefile;
if(is_array($file_documenti) && count($file_documenti)>0) {
foreach ( $file_documenti as $idfile => $nomefile ) {
get_template_part( "template-parts/documento/file" );
}
}
?>
</div><!-- /card-deck card-deck-spaced -->
</div><!-- /col-lg-12 -->
</div><!-- /row -->
<?php
}
}
?>
<?php
if(is_array($luoghi) && count($luoghi)>0 && (!post_password_required())) {
?>
<h2 class="mb-4 h4"><?php _e("Luoghi", "design_scuole_italia"); ?></h2>
<?php
$c=0;
foreach ( $luoghi as $idluogo ) {
$c ++;
$luogo = get_post( $idluogo );
get_template_part( "template-parts/luogo/card" , "large");
}
?>
<?php } ?>
<div class="row variable-gutters">
<?php if(dsi_get_option("show_contatore_commenti", "setup") != "false") { ?>
<?php if ( comments_open() || get_comments_number() ){ ?>
<div class="col-lg-12">
<?php
if (comments_open() || get_comments_number()) :
comments_template();
endif;
?>
</div>
<?php } ?>
<?php } ?>
</div>
<div class="row variable-gutters">
<div class="col-lg-12">
<?php get_template_part( "template-parts/single/bottom" ); ?>
</div><!-- /col-lg-9 -->
</div><!-- /row -->
</article>
</div><!-- /col-lg-8 -->
<div class="col-lg-3 col-md-4 order-lg-0">
<?php get_template_part("template-parts/single/actions"); ?>
<?php
$badgeclass = "badge-outline-greendark";
if ((!post_password_required()))
get_template_part("template-parts/common/badges-argomenti"); ?>
<?php
if(is_array($persone) && count($persone)>0 && (!post_password_required())){
?>
<div class="cards-aside mt-4">
<h2 class="h4"><?php _e("Persone", "design_scuole_italia"); ?></h2>
<?php
foreach ($persone as $idutente) {
$autore = get_user_by("ID", $idutente);
?>
<div class="card card-avatar card-comments">
<?php
$privacy_hidden = get_user_meta( $autore->ID, '_dsi_persona_privacy_hidden', true);
if($privacy_hidden == "false") {
?><a href="<?php echo get_author_posts_url( $autore->ID); ?>"><?php
}
?>
<div class="card-body">
<?php get_template_part("template-parts/autore/card"); ?>
</div>
<?php
if($privacy_hidden == "false") {
?></a><?php
}
?>
</div><!-- /card card-bg card-avatar rounded -->
<?php
}
?>
</div><!-- /cards-avatar -->
<?php } ?>
</div><!-- /col-lg-3 -->
<?php else: ?>
<div class="col-lg-12 p-5 m-5 text-center font-weight-bold wysiwig-text">
<?php the_content(); ?>
</div>
<?php endif; ?>
</div><!-- /row -->
</div><!-- /container -->
</section>
<?php get_template_part("template-parts/single/more-posts"); ?>
<?php endwhile; // End of the loop. ?>
</main><!-- #main -->
<?php
get_footer();