我似乎无法显示以前和以前的帖子链接集。This 是我正在处理的页面。我需要一个链接,以旧的和新的帖子在页面底部。
模板代码如下所示:
<?php /*
Template Name: artikkelit
*/ ?>
<?php get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php $the_query = new WP_Query( \'showposts=5\' ); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
<div class="postPic"> <?php the_post_thumbnail(); ?></div>
<?php the_excerpt(); ?>
<?php endwhile;?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
对解决这个问题有什么建议吗?