我希望有一个包含4个帖子的博客页面,用户可以看到其他帖子,当他按下链接较旧的帖子但我不能让这个工作当我按下链接它直接到一个空白页面,这是我的代码:
<?php
$args = array( 'numberposts' => 4);
$posts= get_posts( $args );
if ($posts) {
foreach ( $posts as $post ) { ?>
<article>
<header>
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
</header>
<footer>
<p><?php the_time('j F Y'); ?>
<!-- <br>Publié par <?php the_author_meta('display_name', 1); ?></p> -->
</footer>
<div>
<?php //echo catch_content_image($post->post_content) ?>
<?php the_excerpt() ?>
<a href="<?php the_permalink(); ?>">Suite de l'article</a>
</div>
</article>
<?php
}
}
?>
<nav>
<ul>
<li class="older"><a href="blog-2.html">← Articles précédents</a></li>
</ul>
</nav>