从另一个WordPress网站拉取帖子

时间:2015-06-23 11:12:18

标签: php wordpress rss simplepie

我正在尝试从我的个人网站上获取2条最新帖子,使用以下http://codex.wordpress.org/Function_Reference/fetch_feed#Usage

中的代码
<h2><?php _e( 'Recent news from Some-Other Blog:', 'my-text-domain' ); ?></h2>

<?php // Get RSS Feed(s)
include_once( ABSPATH . WPINC . '/feed.php' );

// Get a SimplePie feed object from the specified feed source.
$rss = fetch_feed( 'THISISWHEREMYURLGOES/' );

$maxitems = 0;

if ( ! is_wp_error( $rss ) ) : // Checks that the object is created correctly

    // Figure out how many total items there are, but limit it to 5. 
    $maxitems = $rss->get_item_quantity( 2 ); 

    // Build an array of all the items, starting with element 0 (first element).
    $rss_items = $rss->get_items( 0, $maxitems );

endif;
?>

<ul>
<?php if ( $maxitems == 0 ) : ?>
    <li><?php _e( 'No items', 'my-text-domain' ); ?></li>
<?php else : ?>
    <?php // Loop through each feed item and display each item as a hyperlink. ?>
    <?php foreach ( $rss_items as $item ) : ?>
        <?php echo esc_html( $item->get_title() );  ?>
        <li>
            <a href="<?php echo esc_url( $item->get_permalink() ); ?>"
                title="<?php printf( __( 'Posted %s', 'my-text-domain' ), $item->get_date('j F Y | g:i a') ); ?>">
                <?php echo esc_html( $item->get_title() ); ?>                    
                <?php printf( __( 'Posted %s', 'my-text-domain' ), $item->get_date('j F Y | g:i a') ); ?>

            </a>
        </li>
    <?php endforeach; ?>
<?php endif; ?>

使用此代码,我可以获得帖子网址,标题和发布日期,这很棒!

现在,尝试获取图像是另一个问题。 我正在尝试使用:

<?php echo esc_html( $item->the_post_thumbnail() ); ?> 

但我收到错误: 致命错误:调用未定义的方法SimplePie_Item :: the_post_thumbnail()

那么,使用SimplePie,是否有办法获得帖子图片?

主要编辑:

这种获取RSS提要的方式不是很好,它在整个网站上引起了很多问题,所以如果有人能告诉我/指导我可以从另一个WordPress网站获得4个最新帖子,那个真棒!

2 个答案:

答案 0 :(得分:4)

正如您所发现的,WordPress Feed有一些限制。由于您已经要求提供其他解决方案,我绝对建议您使用WP REST API

由于WP API还不是WP Core的一部分,因此您需要执行以下操作:

  1. 前往您的插件面板(在您尝试从您的个人网站上提取帖子的网站上)并安装WP REST API (WP API)
  2. 激活插件
  3. 获取帖子非常简单:http://yoursite.com/wp-json/posts
  4. 由于您只需要四个帖子,因此您可以使用过滤器:

    http://yoursite.com/wp-json/posts?filter[posts_per_page]=4
    

    要在PHP中将此JSON变为可用状态:

    // Get the JSON
    $json = file_get_contents('http://yoursite.com/wp-json/posts?filter[posts_per_page]=4');
    // Convert the JSON to an array of posts
    $posts = json_decode($json);
    

    您现在可以根据需要(通过循环遍历)消化此$posts数组。例如:

    foreach ($posts as $p) {
        echo '<p>Title: ' . $p->title . '</p>';
        echo '<p>Date:  ' . date('F jS', strtotime($p->date)) . '</p>';
        // Output the featured image (if there is one)
        echo $p->featured_image ? '<img src="' . $p->featured_image->guid . '">' : '';
    }
    

    更多信息in the WP API docs

答案 1 :(得分:-1)

如果您不想使用WP REST API,可以尝试Wordpress Developers API

您必须为此授权Wordpress Jetpack插件。然后启用REST API。

<?php
$posts = json_decode(file_get_contents("https://public-api.wordpress.com/rest/v1.1/sites/{yoursite.com}/posts"));
//You can use the $posts variable afterwards
?>