wordpress - DATETIME to real time in PHP -
getting time wordpress post (the field being post_date_gmt stored in datetime), how can convert information (e.g 2011-03-23 20:28:26) actual, maleable date in php? (like thursday, march 23rd, 2011)
echo date('r', strtotime($datetime)); echo date('r', strtotime('2011-03-23 20:28:26')); echo date('l, f js, y', strtotime('2011-03-23 20:28:26')); see date() more formatting options.
Comments
Post a Comment