gpt4 book ai didi

php - 从另一个 WordPress 站点拉取帖子

转载 作者:行者123 更新时间:2023-12-05 02:22:07 24 4
gpt4 key购买 nike

我正在尝试使用以下来自 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() ); ?> 

但是我得到了错误: fatal error :调用未定义的方法 SimplePie_Item::the_post_thumbnail()

那么,使用 SimplePie,有没有办法获取帖子图片?


主要编辑:

这种获取 RSS 提要的方式不是很好,它在整个站点中引起了很多问题,所以如果有人可以向我展示/指导我可以从另一个 WordPress 站点获取 4 个最新帖子的地方,那会很棒!

最佳答案

如您所见,WordPress 提要有一些限制。既然您要求替代解决方案,我绝对建议您使用 WP REST API .

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

  1. 前往您的插件面板(在您尝试从您的个人网站拉取帖子的网站上)并安装 WP REST API (WP API) .
  2. 激活插件
  3. 获取您的帖子就像访问一样简单:http://yoursite.com/wp-json/posts

因为你只想要四个帖子,你可以使用过滤器:

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

要使此 JSON 在 PHP 中处于可用状态:

// 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 .

关于php - 从另一个 WordPress 站点拉取帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31001229/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com