-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfront-page.php
41 lines (36 loc) · 1.35 KB
/
front-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
<?php get_header() ?>
<div class="block actualites">
<h2><a href="<?php echo site_url('/actualites/'); ?>"><?php _e('Latest News', 'sudweb') ?></a></h2>
<?php query_posts('posts_per_page=1&post_type=post&order=DESC'); ?>
<?php while(have_posts()): the_post() ?>
<div>
<h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title() ?></a></h3>
<?php the_post_thumbnail('thumbnail', array('class' => 'illustration')) ?>
<div class="meta"><?php echo get_the_date() ?></div>
<p><?php the_excerpt() ?></p>
</div>
<?php endwhile ?>
</div>
<div class="block programme">
<h2><a href="<?php echo site_url('/programme/'); ?>"><?php _e('Highlighted Talk', 'sudweb') ?></a></h2>
<?php query_posts(array(
'posts_per_page' => 1,
'orderby' => 'rand',
'post_type' => 'talk',
'post_status' => 'publish',
)) ?>
<?php while(have_posts()): the_post() ?>
<article>
<h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title() ?></a></h3>
<?php the_post_thumbnail('thumbnail', array('class' => 'illustration')) ?>
<div class="meta"><?php sudweb_list_speakers(get_the_id()) ?></div>
<p><?php the_excerpt() ?></p>
</article>
<?php endwhile ?>
<?php if (!have_posts()): ?>
<div>
<p>Le programme n'est pas encore disponible, suivez-nous pour être informé dès qu'il sera annoncé !</p>
</div>
<?php endif ?>
</div>
<?php get_footer() ?>