在非WordPress网站上列出最近的帖子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在非WordPress网站上列出最近的帖子相关的知识,希望对你有一定的参考价值。
List your WordPress posts on a non-WordPress website
<?php $how_many=1; //how many posts to display require('blog1/wp-config.php'); //the path to the wp-config file of the blog I want to use $news=$wpdb->get_results("SELECT 'ID','post_title','post_content' FROM $wpdb->posts WHERE 'post_type'="post" AND 'post_status'="publish" ORDER BY post_date DESC LIMIT $how_many"); foreach($news as $np){ printf ("<div class='normalText'>%s</div>", $np->post_content); }?>
以上是关于在非WordPress网站上列出最近的帖子的主要内容,如果未能解决你的问题,请参考以下文章
悬停在帖子链接(WordPress)上时如何显示帖子的特色图片?