显示5个最新的Wordpress帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示5个最新的Wordpress帖子相关的知识,希望对你有一定的参考价值。

Grab 5 latest Wordpress posts and display them on a non-Wordpress php page.
  1. <?php
  2. // Include Wordpress
  3. define('WP_USE_THEMES', false);
  4. require('./blog/wp-blog-header.php');
  5. query_posts('showposts=5');
  6. ?>
  7.  
  8. <ul>
  9. <?php while (have_posts()): the_post(); ?>
  10. <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
  11. <?php endwhile; ?>
  12. </ul>

以上是关于显示5个最新的Wordpress帖子的主要内容,如果未能解决你的问题,请参考以下文章

在wordpress中只显示5个帖子

在静态 html 页面上显示最新的 wordpress 特色图片

使用 ajax 通过 WordPress 菜单在 div 中按类别加载最新帖子

从特定的 Wordpress 类别中提取帖子

PHP Wordpress:在任何Wordpress页面上显示最新的博客帖子

将 wordpress 热门帖子显示到另一个网站