我正在为客户构建Wordpress主题,并且修改了一个特定的“新闻”页面,该页面显示了最近的帖子(无类别)。我将这些设置为每页最多5个帖子,现在我想添加一个选项以导航至较早的帖子。但是,我发现的大多数解决方案都不适合我的情况。我的PHP知识是有限的,因此很可能我只是错误地实现了可能的解决方案。 我当前在有关页面上的php:
<?php
$args = array(
'posts_per_page' => '5',
'paged' => $paged
);
$recent_posts = wp_get_recent_posts($args);
$text = apply_filters('the_excerpt', get_post_field('post_excerpt', $post_id));
$post_date = get_the_date('j F, Y');
foreach ($recent_posts as $recent) {
echo '<li>
<div class="nieuwsimg" style="background-image:url(' . get_the_post_thumbnail_url($recent["ID"]) . ')"></div>
<div class="nieuwstekst">
<p style="color:#fff;margin-top:20px;margin-bottom:-15px;">' . get_the_date('j F, Y', $recent["ID"]) . '</p>
<h3><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"] . '</a> </h3>
<p><a href="' . get_permalink($recent["ID"]) . '">' . wp_trim_words(get_post_field('post_content', $recent["ID"]), 50, '...') . '</a>
<a href="' . get_permalink($recent["ID"]) . '">Lees verder</a>
</p></div>
</li><hr> ';
}
?>
任何帮助将不胜感激!