PHP脚本获取最新帖子特色图片和链接表格WP博客

时间:2011-03-11 01:07:22

标签: php wordpress

我在同一台服务器上有2个(Wordpress)博客,还有2个图像的登录页面。
一个是第一个博客,另一个是第二个博客。

有没有什么方法可以让我在第一张图片,第一篇博文的第一篇文章中的后缩略图和链接以及另一张图片的第二篇博客中的相同内容?

谢谢!

1 个答案:

答案 0 :(得分:1)

比方说,你有博客:

您的目标网页位于:

您需要创建2个文件:

  • /home/username/example31.com/index.php
  • /home/username/example31.com/index_test_wordpress.php

两者都有代码,如下所示:

  1. /home/username/example31.com/index.php上,写道:

    <?php
    echo file_get_contents('http://example31.com/index_test_wordpress.php');
    require_once("/home/username/example12.com/wp-load.php");
    echo  str_repeat("<br />", 10);
    $posts = wp_get_recent_posts( array('numberposts'=>1, 'post_status'=>'publish') );
    print_r($posts);
    ?>
    
  2. /home/username/example31.com/index_test_wordpress.php上,写道:

    <?php
    require_once("/home/username/example.com/wp-load.php");
    $posts = wp_get_recent_posts( array('numberposts'=>1, 'post_status'=>'publish') );
    print_r($posts);
    ?>
    
  3. 注意:

    1. 我对该文件使用file_get_contents,因为我无法想办法对wp-load.php执行两次require(),而不会使每个函数发生冲突。
    2. 为简单起见,我只提出print_r($posts)。但是,你应该明白这一点。