Ashley Cameron Design

Ashley Cameron Design

RSS to HTML

SnippetsWordPress

About a 1 minute read

"The art of living… is neither careless drifting on the one hand nor fearful clinging to the past on the other. It consists in being sensitive to each moment, in regarding it as utterly new and unique, in having the mind open and wholly receptive."

Alan Watts


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php include_once(ABSPATH.WPINC.'/feed.php');
    $rss = fetch_feed('http://feeds.feedburner.com/wpbeginner');
    $maxitems = $rss->get_item_quantity(5);
    $rss_items = $rss->get_items(0, $maxitems); ?>
    <ul>
    <?php if ($maxitems == 0) echo '<li>No items.</li>';
        else // Loop through each feed item and display each item as a hyperlink.
        foreach ( $rss_items as $item ) : ?>
        <li>
          <a href='<?php echo $item->get_permalink(); ?>' title='<?php echo 'Posted '.$item->get_date('j F Y | g:i a'); ?>'>
            <?php echo $item->get_title(); ?>
          </a>
        </li>
    <?php endforeach; ?>
    </ul>