forked from OpenFest/initfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-speakers.php
38 lines (36 loc) · 904 Bytes
/
page-speakers.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
<?php
get_header(); ?>
<div class="separator"></div>
<section class="content grid">
<div class="col-left">
<h1 class="big">Лектори</h1>
<?php
$speakers_args = array( 'post_type' => 'speakers' );
$speakers = new WP_Query( $speakers_args );
if ( $speakers->have_posts() ) :
while ( $speakers->have_posts() ) : $speakers->the_post();
?>
<div class="speaker">
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail();
} else {
?>
<img src="img/speakers.jpg">
<?php
}
?>
<h3><?php the_title(); ?></h3>
<?php
the_content();
?>
</div>
<?php
endwhile;
wp_reset_postdata();
endif;
?>
</div>
<?php # get_sidebar(); ?>
</section>
<?php get_footer(); ?>