当前位置:
  1. 首页 »
  2. 标签:页面模版
共 1 篇

外站调用wordpress文章

在外站调用wordpress文章,百度了下,一般都是通过框架或者直接在根目录调用系统文件创建一个新的php文件来输出文章,其实,只要在模版下新建一个页面模版输出文件即可,而且输出文章的代码可以直接用主题的代码,即输出文章的函数来获取最新文章。 页面模版代码: <?php /* Template Name:外部调用文章模版 */ ?> <?php query_posts('showposts=5'); ?> <ul> <?php while (have_posts()) : the_post(); ?> <li><a href="<?php the_pe
笔记 2,463