从另一个 WordPress 站点拉取帖子
Pulling posts from another WordPress site
我正在尝试使用来自 http://codex.wordpress.org/Function_Reference/fetch_feed#Usage
的以下代码从我的个人网站获取 2 篇最新帖子
<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; ?>
使用此代码,我可以获得帖子 URL、标题和发布日期,太棒了!
现在,尝试获取图像是另一个问题。
我正在尝试使用 :
<?php echo esc_html( $item->the_post_thumbnail() ); ?>
但是我得到了错误:
致命错误:调用未定义的方法 SimplePie_Item::the_post_thumbnail()
那么,使用 SimplePie,有没有办法获取帖子图片?
主要编辑:
这种获取 RSS 提要的方式不是很好,它在整个网站上引起了很多问题,所以如果有人可以 me/direct 向我展示我可以从另一个人那里获得 4 个最新帖子的地方WordPress 网站,那太棒了!
如您所见,WordPress 提要有一些限制。既然您要求替代解决方案,我肯定会推荐使用 WP REST API。
由于 WP API 还不是 WP Core 的一部分,您需要执行以下操作:
- 前往您的插件面板(在您尝试从您的个人网站拉取帖子的网站上)并安装 WP REST API (WP API)。
- 激活插件
- 获取您的帖子就像去:
http://yoursite.com/wp-json/posts
一样简单
因为你只想要四个帖子,你可以使用过滤器:
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。
如果您不想使用 WP REST API, you can give a try to 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
?>
我正在尝试使用来自 http://codex.wordpress.org/Function_Reference/fetch_feed#Usage
的以下代码从我的个人网站获取 2 篇最新帖子<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; ?>
使用此代码,我可以获得帖子 URL、标题和发布日期,太棒了!
现在,尝试获取图像是另一个问题。 我正在尝试使用 :
<?php echo esc_html( $item->the_post_thumbnail() ); ?>
但是我得到了错误: 致命错误:调用未定义的方法 SimplePie_Item::the_post_thumbnail()
那么,使用 SimplePie,有没有办法获取帖子图片?
主要编辑:
这种获取 RSS 提要的方式不是很好,它在整个网站上引起了很多问题,所以如果有人可以 me/direct 向我展示我可以从另一个人那里获得 4 个最新帖子的地方WordPress 网站,那太棒了!
如您所见,WordPress 提要有一些限制。既然您要求替代解决方案,我肯定会推荐使用 WP REST API。
由于 WP API 还不是 WP Core 的一部分,您需要执行以下操作:
- 前往您的插件面板(在您尝试从您的个人网站拉取帖子的网站上)并安装 WP REST API (WP API)。
- 激活插件
- 获取您的帖子就像去:
http://yoursite.com/wp-json/posts
一样简单
因为你只想要四个帖子,你可以使用过滤器:
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。
如果您不想使用 WP REST API, you can give a try to 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
?>