-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfront-page.php
More file actions
executable file
·39 lines (30 loc) · 1.02 KB
/
front-page.php
File metadata and controls
executable file
·39 lines (30 loc) · 1.02 KB
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
<?php get_header(); ?>
<section class="latest-posts">
<div class="container">
<?php
$args = array(
'numberposts' => -1,
'order_by' => 'post_date',
'order' => 'DESC',
'post_type' => 'post',
'post_status' => 'publish'
);
$posts = get_posts($args);
foreach ($posts as $post) {
setup_postdata($post);
?>
<article class="post-single">
<header class="post-head">
<h2><?php the_title(); ?></h2>
</header>
<p><?= get_the_excerpt(); ?> <a href="<?php the_permalink(); ?>">Read more</a></p>
<footer class="post-meta">
<time><?php the_time('jS \of\ F Y'); ?></time>
</footer>
</article>
<?php
}
?>
</div>
</section>
<?php get_footer(); ?>