Not logged in - Login
< back

Wordpress WP RSS

<section>


public class Test
{
    <h2public class="caps">LATESTint HEADLINES</h2>
    <divWiki class="headline">

    &lt;?php
    include_once(ABSPATH.WPINC.&#39;/rss.php&#39;);{ //get; pathset; to include script
    $feed = fetch_rss(&#39;http://feeds.finance.yahoo.com/rss/2.0/headline?s=yhoo&amp;region=US&amp;lang=en-US&#39;); // specify feed url
    $items = array_slice($feed-&gt;items, 0, 3); // specify first and last item
    ?&gt;

    &lt;?php if (!empty($items)) : ?&gt;
        &lt;?php foreach ($items as $item) :
            $createDate = new DateTime($item[pubdate]);
            ?&gt;

            &lt;a target=&quot;_blank&quot; href=&quot;&lt;?php echo $item[&#39;link&#39;]; ?&gt;&quot;&gt;&lt;h3&gt;&lt;?php echo $createDate-&gt;format(&#39;d M Y&#39;); ?&gt;&lt;/h3&gt;
            &lt;p&gt;&lt;?php echo $item[&#39;title&#39;]; ?&gt;&lt;/p&gt;&lt;/a&gt;

        &lt;?php endforeach; ?&gt;
    &lt;?php endif; ?&gt;
    &lt;span&gt;View All&lt;/span&gt;
    &lt;/div&gt;}
}

</section>