-
Notifications
You must be signed in to change notification settings - Fork 0
/
talks.php
70 lines (46 loc) · 1.78 KB
/
talks.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
<?php
/*
Template Name: Book launches and talks
*/
?>
<?php get_header(); ?>
<div class="container marketing">
<br>
<?php query_posts('orderby=date&order=DESC&showposts=55&cat=7'); ?>
<br>
<div class="row hidden-xs">
<div class="col-sm-2">Date</div>
<div class="col-sm-3">Venue/event</div>
<div class="col-sm-2">Location</div>
<div class="col-sm-5">Lecture title</div>
</div>
<hr class="featurette-divider">
<br>
<?php while (have_posts()) : the_post(); ?>
<div class="row">
<div class="col-sm-2">
<h4><strong><?php the_time('F j, Y'); ?></strong></h4>
</div>
<div class="col-sm-3">
<h4><strong><?php echo get_post_meta($post->ID, 'Venue', true); ?></strong></h4>
</div>
<div class="col-sm-2">
<h4><strong><?php echo get_post_meta($post->ID, 'Country', true); ?></strong></h4>
</div>
<div class="col-sm-5">
<div class="entry">
<p class="lead"><?php the_title(); ?></p>
<?php
$content = apply_filters('the_content', $post->post_content);
echo $content;
?>
</div>
</div>
</div>
<hr class="featurette-divider">
<?php endwhile; ?>
</div>
</div>
<!-- /END THE FEATURETTES -->
</div>
<?php get_footer(); ?>