我需要帮助,我想将此网站https://www.affiliatewindow.com中的Affiliate Window数据源XML导入我的wordpress网站。所以请帮助我如何做到这一点。请帮助我。
谢谢, 优素福
答案 0 :(得分:1)
要向您的网站添加xml Feed,请查看以下代码。
<?php
include_once(ABSPATH . WPINC . '/feed.php');
$feed = fetch_feed( http://uk.affiliatewindow.com/feed/ );
$rss = $feed;
if(!empty($rss)):
$maxitems = $rss->get_item_quantity(4);
$rss_items = $rss->get_items(0, $maxitems);
endif;
?>
<?php if ($maxitems == 0) echo 'No news';
else
foreach ( $rss_items as $item ) : ?>
<?php
// display item title and date
echo '<span class="comment_author"><a href="http://uk.affiliatewindow.com/" target="_blank">' . substr($item->get_title(), 0, 65) . '...</a></span><br>'; ?>
<?
// if single item, display content
if(isset($_GET['item']))
{
echo ' <span class="latest_content"><a href="http://uk.affiliatewindow.com/" target="_blank">'. substr($item->get_content(), 0, 30).'</a></span>';
}
echo '<span class="latest_content">' . shorten($item->get_description(), 150).'</span><br>';
?>
<?php endforeach; ?>
在这一行$feed = fetch_feed( http://uk.affiliatewindow.com/feed/ );
是Feed地址
接下来我会相信你现在!
在这里,我从您想要的网站导入了Feed。在侧栏中查看外部Feed。 http://5wpthemes.com/press5/
你唯一需要做的就是设置href地址!
告诉我它是否有效!