显示5个最新的Wordpress帖子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示5个最新的Wordpress帖子相关的知识,希望对你有一定的参考价值。
Grab 5 latest Wordpress posts and display them on a non-Wordpress php page.
<?php // Include Wordpress require('./blog/wp-blog-header.php'); query_posts('showposts=5'); ?> <ul> <?php while (have_posts()): the_post(); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul>
以上是关于显示5个最新的Wordpress帖子的主要内容,如果未能解决你的问题,请参考以下文章
在静态 html 页面上显示最新的 wordpress 特色图片
使用 ajax 通过 WordPress 菜单在 div 中按类别加载最新帖子