Yes me too. A collection of posts with the same subject would benefit from having the date of posting.
Not possible yet but I’ve added it to my list of things to add to the plugin moving forward 🙂
+1 for this feature! Anyways, thanks for a really useful plugin 🙂
+2 for this feature! 🙂
I tried to use the instructions you gave on your website to set it up manually but my page showed blank.
A really helpful plugin – many thanks!
Can you post a link to those instructions please? I can’t find them.
Thanks, but I don’t see anything about adding the posting date there.
I’ve tried editing the plugin by adding a variable $date = $post->post_date; then outputting `$out .= ‘<div style=”entry_meta”> ‘ . $date. ‘</div>’;
We show dates of posting via a hook in functions.php using post_date.
On actual posts it is in a nice format like June 4, 2014; whereas on a page made with the edited plugin it appears like this: 2014-06-04 23:25:45
Anyone have any idea how to make it look like it does on posts?
Think I’ve got it.
$my_date = $post->post_date;
$out .= '<div>'.mysql2date('F j, Y', $my_date).'</div>';
‘Y-m-d H:i:s’ // format in which date/time is stored in the wp database. F, j, and Y are from http://codex.wordpress.org/Formatting_Date_and_Time
Though it would be much better if it picked up the formatting from the dashboard by (get_option('date_format')), but I have been unable to make that work, as I have only the haziest understanding of php syntax.