forked from codigoconjuan/escuelacocina_wp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-clases.php
34 lines (27 loc) · 878 Bytes
/
page-clases.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
<?php
/*
* Template Name: Listado Clases
*/
get_header(); ?>
<div class="container mb-4">
<div class="row justify-content-center">
<div class="col-md-8">
<blockquote class="subtitulo text-center pl-3">
<?php while(have_posts()): the_post();
the_content();
$titulo = get_the_title();
endwhile;
?>
</blockquote>
</div>
</div>
</div>
<section class="clases mt-5 py-5">
<h1 class="separador text-center mb-3"><?php echo $titulo; ?></h1>
<div class="container">
<div class="row">
<?php edc_query_cursos(); ?>
</div>
</div>
</section>
<?php get_footer(); ?>