从wordpress外部拉帖子(以正确的方式!)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从wordpress外部拉帖子(以正确的方式!)相关的知识,希望对你有一定的参考价值。
Pulling posts from outside wordpress (in the right way!) as a response for this snippet: http://snipplr.com/view/39523/pulling--posts-from-outside-wordpress/
<?php include('wp-load.php'); // it is neccesary to include wp-load.php, cause it's the only why to use Wordpress API outside of Wordpress // pay atention on the include path if you want to work :-) echo '<h3>Recent Blog Post</h3>'; echo '<ul>'; $number = 3; // number of recent posts that you want to display $recent_posts = wp_get_recent_posts($number); // this function will display recent posts, order by ID DESC foreach($recent_posts as $post){ echo '<li><a href="'.get_permalink($post["ID"]).'">'.$post["post_title"].'</a></li>'; } echo '</ul>'; ?>
以上是关于从wordpress外部拉帖子(以正确的方式!)的主要内容,如果未能解决你的问题,请参考以下文章
将来自两个不同 wordpress 的帖子合并到一个按日期排序的帖子页面
Wordpress:如何以编程方式创建帖子并在之前检查重复项
如何查询我的 WordPress 博客以列出我的 Vue.js 网站上的最新帖子?
如何从Wordpress管理员替换帖子和页面的所有外部/预览