0
我想有一個博客頁面最多包含4個帖子,用戶可以看到其他帖子,當他按鏈接舊帖子,但我不能讓這個工作,當我按下它的鏈接直接到一個空白頁,這是我的代碼:在博客頁面顯示最舊的帖子php
<?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>