for the post i just published, it says '42 years, 303 days ago' with the usage (wp_days_ago), but when i use wp_days_ago_ajax, it works fine.
Any idea?
for the post i just published, it says '42 years, 303 days ago' with the usage (wp_days_ago), but when i use wp_days_ago_ajax, it works fine.
Any idea?
and got it working with the fix
- echo wp_days_ago_internal(get_the_ID(), $mode, $prepend, $append, $texts);
+ echo wp_days_ago_internal(get_the_time("U", get_the_ID()), $mode, $prepend, $append, $texts);Oh, man. That's embarrassing. Thanks for reporting this and shame on me for not testing enough. Fixed in 2.5.2.
You must log in to post.