[Solved] RSS Feed For This Fourm - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: General (https://forum.codeigniter.com/forumdisplay.php?fid=1) +--- Forum: Lounge (https://forum.codeigniter.com/forumdisplay.php?fid=3) +--- Thread: [Solved] RSS Feed For This Fourm (/showthread.php?tid=64100) |
[Solved] RSS Feed For This Fourm - wolfgang1983 - 01-14-2016 Hi. I am trying to find out how in the rss feed part of this forum how I could get the date it for each post i have a example here Codepen Example But where it says undefined it should say the date of it posted. Here is the full view Codepen Full View Any suggestions how to get date of post for rss? PHP Code: $(document).ready(function() { RE: RSS Feed For This Fourm - sv3tli0 - 01-14-2016 At your JS just put Code: data.publishedDate Code: data.date You may need to parse it before outputing (to format it in a little bit more clear format). RE: RSS Feed For This Fourm - wolfgang1983 - 01-14-2016 (01-14-2016, 04:41 AM)sv3tli0 Wrote: At your JS just put Thanks for tip |