-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews.php
37 lines (26 loc) · 880 Bytes
/
news.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
<?php /* Template Name: News Page */ ?>
<?php get_header(); ?>
<div class="headerpg" ></div>
</div>
<div class="content" id="intro">
<div class="row text-center wp2">
<h1>News</h1>
<p class="headline">Some of our most recent news articles</p>
</div>
</div>
<div class="news">
<?php query_posts('cat=1&posts_per_page=20'); if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="large-4 columns">
<a href="<?php the_permalink() ?>">
<section>
<h3><?php the_title(); ?></h3>
<span><p><?php the_time('F jS, Y') ?></p></span>
<p><?php the_excerpt(); ?></p>
</section>
</a>
</div>
<?php endwhile; else: ?>
<p>Sorry, no posts to list</p>
<?php endif; ?>
</div>
<?php get_footer(); ?>