外站调用wordpress文章
在外站调用wordpress文章,百度了下,一般都是通过框架或者直接在根目录调用系统文件创建一个新的php文件来输出文章,其实,只要在模版下新建一个页面模版输出文件即可,而且输出文章的代码可以直接用主题的代码,即输出文章的函数来获取最新文章。
页面模版代码:
<?php
/*
Template Name:外部调用文章模版
*/
?>
<?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>
只需要简单的写上这段代码,在wordpress后台新建一个页面,选择这个模版文件即可!
新建一个页面,模版选择创建的页面模版文件,内容为空,直接发布!
外站调用直接用用file_get_contents函数即可!