【发布时间】:2026-02-12 09:35:01
【问题描述】:
有没有办法将缩略图网址添加到 wordpress 提要??
我知道如何将缩略图添加到 the_content,但我需要 rss 提要在另一个域上布局页面。所以我只是想使用 $item->get_title(), $item->get_description() 和缩略图像 $item->get_image_url
在其他 domain.com 上我使用以下(其他 domain.com 也是 WP 安装)
require( '../../../site/wp-load.php' );
include_once(ABSPATH . WPINC . '/feed.php');
$rss= fetch_feed('domain.com/feed/?post_type=recipes');
foreach($rss->get_items() as $item) {
echo $item->get_title().'<br/>'.$item->get_description();
echo '<hr/>';
}
有什么建议吗?
【问题讨论】: