< ?php while (have_posts()): the_post(); ? >   < li > < a title=" < ?php the_title(); ? > " href=" < ?php the_permalink(); ? > " target="_blank" > < ?php the_title(); ? > < /a > < /li >这样就可以调用网站中最新的10篇文章了,showposts=10这个数字可以修改成你想要调用文章的数量。下面我来给大家仔细讲解下如何来修改代码达到调用自己想要调用文章的效果。  1、如果我想要调用某个分类的下的最新文章该如何实现呢?  其实这点很容易实现的只需要修改下query_posts这个参数,比如我指定要调用的分类的id是1那么代码就变成了:define('wp_use_themes', false);   require('./wp-load.php');   /** 如果想同时调用多个分类用半角符分隔如cat=1,2,3,4 */   query_posts('showposts=10&orderby=new&cat=1');   ? >   /** 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="" target="_blank " > < ?php the_title(); ? > < /a > < /li >   < ?php endwhile; ? >2、如果我想调用全站站问斩但只屏蔽某个分类下的文章呢?< ?php   define('wp_use_themes', false);   require('./wp-load.php');   /** 如果想同时屏蔽多个分类用半角符分隔如cat=-1,-2,-3,-4 */   query_posts('showposts=10&orderby=new&cat=-1');   ? >   /** charset=utf-8"防止乱码 */   < meta http-equiv="content-type" content="text/html; charset=utf-8" / >   < ?php while (have_posts()): the_post(); ?>   < li > < a title="" href="" target="_blank" > < ?php..."/>

wordpress二次开发:站外以html的形式调用wordpress文章 -m6米乐app登录

4,549views
no comments

共计 2658 个字符,预计需要花费 7 分钟才能阅读完成。

小 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 the_permalink(); ? > " target="_blank" > < ?php the_title(); ? > < /a > < /li >

这样就可以调用网站中最新的 10 篇文章了,showposts=10 这个数字可以修改成你想要调用文章的数量。下面我来给大家仔细讲解下如何来修改代码达到调用自己想要调用文章的效果。


1、如果我想要调用某个分类的下的最新文章该如何实现呢?


其实这点很容易实现的只需要修改下 query_posts 这个参数,比如我指定要调用的分类的 id 是 1 那么代码就变成了:

define('wp_use_themes', false);
  require('./wp-load.php');
  /** 如果想同时调用多个分类用半角符分隔如 cat=1,2,3,4 */
  query_posts('showposts=10&orderby=new&cat=1');
  ? >
  /** 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="" target="_blank " > < ?php the_title(); ? > < /a > < /li >
  < ?php endwhile; ? >

2、如果我想调用全站站问斩但只屏蔽某个分类下的文章呢?

< ?php
  define('wp_use_themes', false);
  require('./wp-load.php');
  /** 如果想同时屏蔽多个分类用半角符分隔如 cat=-1,-2,-3,-4 */
  query_posts('showposts=10&orderby=new&cat=-1');
  ? >
  /** charset=utf-8" 防止乱码 */
  < meta http-equiv="content-type" content="text/html; charset=utf-8" / >
  < ?php while (have_posts()): the_post(); ?>
  < li > < a title="" href="" target="_blank" > < ?php the_title(); ? > < /a > < /li >
  < ?php endwhile; ? >

3、如果我想调用随机文章呢?

< ?php
  define('wp_use_themes', false);
  require('./wp-load.php');
  /** 如果想同时屏蔽多个分类用半角符分隔如 cat=-1,-2,-3,-4 */
  query_posts('showposts=10&orderby=rang');
  ?>
  /** charset=utf-8" 防止乱码 */
  < meta http-equiv="content-type" content="text/html; charset=utf-8" / >
  < ?php while (have_posts()): the_post(); ? >
  < li > < a title="" href="" target="_blank" > < ?php the_ title(); ? > < /a > < /li >
  < ?php endwhile; ?>

4、如果我想输出摘要呢?

< ?php
  define('wp_use_themes', false);
  require('./wp-load.php');
  /** 如果想同时屏蔽多个分类用半角符分隔如 cat=-1,-2,-3,-4 */
  query_posts('showposts=10&orderby=rang');
  ? >
  /** 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="" target="_blank" > < ?php the_title(); ? > < /a >
  < ?php echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 200,"...",'utf-8'); ? > < /l i >
  < ?php endwhile; ?>

差点都忘了~ 下面小 v 就再来说说站外如何来调用~

< ?php
  // 该代码放置在需要调用文章内容和列表的地方
  $url=http:// 你的站点地址 /html_post.php;
  echo file_get_contents($url);
  ? >

ok 大功告成。调出来的文章都是纯 html 的~ 不是什么 js 噢,对 seo 非常友好。另外小 v 提示下:上面介绍的方法都必须要在调用站点支持 php 的情况下才可行,如果调用站点支持 asp 的话需要把读取 html_post.php 的 php 代码用 asp 重写一遍,但是如果是静态空间就只能用 js 来调用咯。


正文完
 
m6米乐app登录 copyright notice: our original article, by 网站建设 2013-06-28 publish, total 2658 words.
转载说明:除特殊说明外本站文章皆由cc-4.0协议发布,转载请注明出处。
comment(no comments)
网站地图