0

我需要帮助,我想从这个站点https://www.affiliatewindow.com将 Affiliate Window 数据馈送 XML 导入我的 wordpress 网站。所以请帮助我如何做到这一点。请帮助我。

谢谢,优素福

4

1 回答 1

1

要将 xml 提要添加到您的网站,请查看下面的代码。

<?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/ );是提要地址下一步我相信你现在会!

在这里,我从您想要的网站导入了提要。在侧边栏中查找外部馈送。 http://5wpthemes.com/press5/

你唯一需要做的就是设置href地址!

告诉我它是否工作!

于 2013-04-24T17:24:41.137 回答