I am using this code to make lists of external links on a page. It works wonderfully but I am unsure how to display publication date for each item.
Any suggestions? Thanks!
I am using this code to make lists of external links on a page. It works wonderfully but I am unsure how to display publication date for each item.
Any suggestions? Thanks!
Use the value $item['pubdate']
E.g.,
<?php echo $item['pubdate']; ?>
Just make sure that any feed you use has the <pubDate></pubDate> tag pairs.
This topic has been closed to new replies.