forked from codigoconjuan/escuelacocina_wp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
single-clases_cocina.php
84 lines (68 loc) · 4.13 KB
/
single-clases_cocina.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
<?php get_header(); ?>
<?php while(have_posts()): the_post(); ?>
<?php get_template_part('template-parts/contenido', 'post');
// printf( '<pre>%s</pre>', var_export( get_post_custom( get_the_ID() ), true ) );
?>
<div class="container">
<div class="row justify-content-center mt-5">
<div class="col-md-6">
<h2 class="separador text-center my-3">¿Qué Incluye?</h2>
<ul class="list-group">
<?php
$lista_incluye = get_post_meta(get_the_ID(), 'edc_cursos_incluye', true);
foreach($lista_incluye as $incluye): ?>
<li class="list-group-item list-group-item-secondary text-light">
<?php echo $incluye ?>
</li>
<?php endforeach; ?>
</ul>
<h2 class="separador text-center my-3 mt-5">Información Extra</h2>
<ul class="list-group">
<li class="list-group-item list-group-item-primary text-light">
<?php echo get_post_meta(get_the_ID(), 'edc_cursos_cupo', true); ?>
Cupos Disponibles
</li>
<li class="list-group-item list-group-item-primary text-light">
<?php $total = get_post_meta(get_the_ID(), 'edc_cursos_costo', true); ?>
Costo: $ <?php echo money_format('%i', $total); ?>
</li>
<li class="list-group-item list-group-item-primary text-light">
Fecha Inicio: <?php echo get_post_meta(get_the_ID(), 'edc_cursos_fecha_inicio_curso', true); ?>
- Fecha Fin: <?php echo get_post_meta(get_the_ID(), 'edc_cursos_fecha_fin_curso', true); ?>
</li>
<li class="list-group-item list-group-item-primary text-light">
Horario:
<?php echo get_post_meta(get_the_ID(), 'edc_cursos_hora_inicio_clase', true) . " - ".
get_post_meta(get_the_ID(), 'edc_cursos_hora_fin_clase', true); ?>
</li>
<li class="list-group-item list-group-item-primary text-light">
Duración: <?php echo get_post_meta(get_the_ID(), 'edc_cursos_indicaciones', true); ?>
</li>
</ul>
</div><!--.col-md-6-->
<div class="col-md-6 text-center" >
<h2 class="separador text-center mt-5 my-md-3">Imparte</h2>
<?php $instructor_ID = get_post_meta(get_the_ID(), 'edc_cursos_chef', true);
$args = array(
'post_type' =>'chefs',
'post__in' => $instructor_ID,
'posts_per_page' => 5
);
$instructor = new WP_Query($args);
while($instructor->have_posts()): $instructor->the_post();
?>
<div>
<div class="row justify-content-center mb-4">
<div class="col-md-7">
<?php the_post_thumbnail('cuadrada_mediana', array('class' => 'img-fluid rounded-circle mb-4')) ?>
</div>
</div>
<p class="instructor"> <?php the_title(); ?> </p>
<?php the_content(); ?>
</div>
<?php endwhile; wp_reset_postdata(); ?>
</div>
</div>
</div>
<?php endwhile; ?>
<?php get_footer(); ?>