-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle-inspira_eventos.php
48 lines (36 loc) · 1.43 KB
/
single-inspira_eventos.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
<?php
/**
* @package WordPress
* @subpackage Inspira
* @since Inspira 0.1
*/
get_header(); ?>
<section class="eventos single"><div class="contents">
<article class="single-entry">
<?php while ( have_posts() ) : the_post(); ?>
<header>
<h1><?php the_title(); ?></h1>
</header>
<footer>
<date><?php echo date_i18n('F j Y g:i a', get_field('fecha')); ?></date>
</footer>
<figure class="featured-img">
<?php the_post_thumbnail( 'single-thumb' ); ?>
</figure>
<?php the_content(); ?>
<div class="map">
<?php $location = get_field('google_map');
if( !empty($location) ): ?>
<div class="acf-map event_map">
<div class="marker" data-lat="<?php echo $location['lat']; ?>" data-lng="<?php echo $location['lng']; ?>"></div>
</div>
<?php endif; ?>
</div>
<div class="confirmar-asistencia">
<h2>Confirma tu asistencia</h2>
<?php echo do_shortcode( '[contact-form-7 id="114" title="Eventos - Confirmar Asistencia"]' ); ?>
</div>
<?php endwhile; ?>
</article>
</div></section>
<?php get_footer(); ?>