I've been validating my RSS feed at http://validator.w3.org/feed/check.cgi it gives me the warning:
In addition, interoperability with the widest range of feed readers could be improved by implementing the following recommendation.
line 10, column 46: Problematical RFC 822 date-time value: Mon, 15 Dec 14 15:26:54 +0000
<pubDate>Mon, 15 Dec 14 15:26:54 +0000</pubDate>
I generate the date with php and wordpress
date(DATE_RFC822, strtotime(get_post_time('Y-m-d H:i:s',$postid));
The date is definite formatted as DFC822, as i'm using PHPs built in RFC822 definition what is the validator complaining about, and how to i fix it.
get_post_time('r', $postid)
? You're just forcing php to do a hell of a lot of useless work with timestamp->string->timestamp->string. - Marc B