在博客页面php中显示最旧的帖子

时间:2015-09-11 14:36:21

标签: php wordpress posts

我希望有一个包含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>

0 个答案:

没有答案