-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
executable file
·44 lines (34 loc) · 903 Bytes
/
page.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
<?php get_header(); ?>
<main role="main">
<!-- section -->
<section>
<?php if (have_posts()): while (have_posts()) : the_post(); ?>
<article class="single">
<div class="left">
<?php
$galeria = get_field('galeria');
$categ = get_the_terms(get_the_ID(), 'tipos_agenda');
$inicio = get_field('fecha_inicio');
$todo_el_dia = get_field('todo_el_dia');
$cierre = get_field('fecha_cierre');
if($galeria): foreach($galeria as $img):
?>
<div class="img">
<div class="size"></div>
<img src="<?php echo $img['url'] ?>" alt="">
</div>
<?php endforeach; endif; ?>
</div>
<div class="right">
<h1><?php the_title() ?></h1>
<div class="content">
<?php the_content() ?>
</div>
</div>
</article>
<?php endwhile; endif; ?>
</section>
<!-- /section -->
</main>
<?php get_sidebar(); ?>
<?php get_footer(); ?>