WordPress调用另一个站点最新文章列表

Author: 陌小雨Date: 2015-07-20View: 44

看到大前端文章页标签下面调用了阿里百秀的4篇最新文章,有日期,有缩略图,有文章标题,陌小雨觉得很不错,据说这是广告,应该要给钱的吧,^_^。陌小雨现在有两个站点,总希望两者之间能有点联系,所以就想在陌小雨(以下简称A站)文章页调用体操之乡(以下简称B站)的最新文章列表,也就是wordpress实现站外调用。

陌小雨原先的想法是在B站新建一个模板调用最新的4篇文章,然后在B站新建一个页面,选中刚刚新建的模板,再在A站通过自带的广告位的js调用实现。具体方法和代码如下:

1、B站的模板文件new.php

<?php
/*template name: 最新文章*/
?>
  <style>
  .pads {
    overflow: hidden;
    padding: 0px;
    margin: 0px -2% 10px 0px;
}
.pads li {
    width: 23%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 20px;
    margin-right: 1.5%;
}
.pads a {
    display: block;
    position: relative;
}
.pads img {
    max-width: 100%;
    margin-bottom: 5px;
}
.pads h4, a {
    transition: all 0.25s ease 0s;
}
.pads h4 {
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    color: #666;
    margin: 0px;
}
.pads time {
    color: #FFF;
    background-color: #FF5E52;
    display: inline-block;
    padding: 2px 5px;
    font-size: 12px;
    position: absolute;
    top: 0px;
    left: 0px;
}
  </style>
  <ul class="pads">
  <?php $post_query = new WP_Query('showposts=4');while ($post_query->have_posts()) : $post_query->the_post();
$do_not_duplicate = $post->ID; ?>
  <li><a href="<?php the_permalink(); ?>" target="_blank"><?php echo post_thumbnail_img(240,180);?><h4><?php the_title(); ?></h4><time><?php the_time('m-d')?></time></a></li>
  <?php endwhile;?>
  </ul>

2、js调用代码

<script type="text/javascript">document.write('<iframe width="100%"  height="245px"  frameborder="0" scrolling="no" border="0" src="https://dedewp.com/new" style="width: 100%;"></iframe>');</script>

现在陌小雨用的是另外一种办法:在B站根目录新建new.php文件,然后在A站通过php代码调用

1、new.php文件代码

<?php
define('WP_USE_THEMES', false);
require('./wp-load.php');
query_posts('showposts=4&orderby=new');
?>
<style>
  .pads {
    overflow: hidden;
    padding: 0px;
    margin: 0px -2% 10px 0px;
}
.pads li {
    width: 23%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 20px;
    margin-right: 1.2%;
}
.pads a {
    display: block;
    position: relative;
    text-decoration: none;}
.pads img {
    max-width: 100%;
    margin-bottom: 5px;
}

.pads h4, a {
    transition: all 0.25s ease 0s;
}
.pads h4 {
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    color: #666;
    margin: 0px;
}
.pads time {
    color: #FFF;
    background-color: #FF5E52;
    display: inline-block;
    padding: 2px 5px;
    font-size: 12px;
    position: absolute;
    top: 0px;
    left: 0px;
}
</style>
<ul class="pads">
<?php while (have_posts()): the_post(); ?>
  <li><a href="<?php the_permalink(); ?>" target="_blank"><?php echo post_thumbnail_img(240,180);?><h4><?php the_title();?></h4><time><?php the_time('m-d');?></time></a></li>
  <?php endwhile;?>
  </ul>

2、php调用

<?php
$url='http://你的站点地址/new.php';
echo file_get_contents( $url );
?>

两种办法各有利弊,第二种输出的代码更简洁,但需要将php代码插入到模板文件中,第一种办法可以在后台很方便的插入到广告位,请自行选用。有点强迫症的我还是选择了第二种方式。

上面分享的是调用B站最新的四篇文章,如果是调用指定分类或者排除某分类或者是随机输出只需要修改下第四行query_posts这个地方就可以了。

比如要调用指定分类(分类ID是1)那么需修改为:

/** 如果想同时调用多个分类用半角符分隔如cat=1,2,3,4 */
query_posts('showposts=10&orderby=new&cat=1,2,3,4');

如果想调用全站文章但只屏蔽某个分类下的文章就需修改为:

/** 如果想同时屏蔽多个分类用半角符分隔如cat=-1,-2,-3,-4 */
query_posts('showposts=10&orderby=new&cat=-1,-2');

如果想调用随机文章,代码需修改为“

query_posts('showposts=10&orderby=rand');

这种通过WordPress调用另一个站点最新文章列表来获取广告费的办法对流量大的站点陌小雨觉得是个不错的思路哦,你也想试试了么?