-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
51 lines (25 loc) · 990 Bytes
/
Copy pathpage.php
File metadata and controls
51 lines (25 loc) · 990 Bytes
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
<?php get_header(); ?>
<!-- SONO IL TEMPLATE FRONT-PAGE.PHP !!! -->
<div class="sfondo">
<div id="corpo" class="container">
<div class="row">
<div id="contenuti" class="col-md-12">
<!--inizio loop di Wordpress -->
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<!-- post_class() stampa una serie di classi generate da Wordpress per stilizzare nel dettaglio varie tipologie di articolo, passando un argomento posso aggiungere delle mie classi-->
<div <?php post_class('articolo'); ?>>
<?php the_content() ?>
</div>
<?php endwhile; else: ?>
<!-- testo visualizzato solo se il loop non trova elementi-->
<div class="articolo">
<h2>Attenzione!</h2>
<p>Nessun elemento trovato</p>
</div>
<?php endif; ?>
<!-- Fine loop Wordpress -->
</div>
</div>
</div>
</div>
<?php get_footer(); ?>