I'm trying to change a file in the Wordpress pluging SNAP, i'm trying to change the bit where it retrogradily posts old posts to tumblr.
This is the line i need to change ...
Code:
$postDate = (($options['useOrDate']=='1' && $post->post_date_gmt!='0000-00-00 00:00:00')?$post->post_date_gmt:gmdate("Y-m-d H:i:s", strtotime($post->post_date)))." GMT";
the part that says "$post->post_date" posts the wp post onto tumblr with the date it was added to wp, instead i want it to post it with the current date, how do i do that?
Thanks