网站建设 wordpress二次开发:站外以html的形式调用wordpress文章
小 v 在帮客户开发 wordpress 站点时经常会遇到各种要求,这次帮一个客户开发项目时,客户要求。没办法顾客就是上帝,继续折腾呗。下面来说下实现方法,首先在 wordpress 的根目录新建一个 ht 帮他开发的站点的文章能在其他网站调用,并且要以 html 的形式来调用不能使用 js,说是做链轮什么的 ml_post.php 文件,记住是需要向外调用文章的 wordpress 站点。html_post.php 文件的代码如下: define(‘wp_use_themes’, false); require(‘./wp-load.php’); query_posts(‘showposts=10&orderby=new’); /** charset=utf-8" 防止乱码 */ < meta http-equiv="content-type" content="text/html; charset=utf-8" / > < ?php while (have_posts()): the_post(); ? > < li > < a title=" < ?php the_title(); ? > " href=" < ?php…