Import RSS Feed Author
-
I’ve managed to pull the title of post via RSS feed using the script below.
<?php include_once(ABSPATH . WPINC . '/rss.php'); $rss = fetch_rss('http://example.com/?feed=rss'); $maxitems = 1; $items = array_slice($rss->items, 0, $maxitems); ?> <?php foreach ( $items as $item ) : ?> <?php echo $item['title']; ?> <?php endforeach; ?>How do i pull the author of that post?
<?php echo $item['author']; ?>doesnt work for me, maybe it’s wrong. What is the correct bits of code i need to add or replace? Thanks in advance.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Import RSS Feed Author’ is closed to new replies.