hydro
Forum Replies Created
-
Forum: Plugins
In reply to: Future Post listings in WP 2.1People having troubles with modyfing the calendar to display future posts:
even as a total PHP noob, I’ve managed it 😉
line599, general-template.php
change
AND post_date < '" . current_time('mysql') . '\'', ARRAY_N);into
AND post_date <> '" . current_time('mysql') . '\'', ARRAY_N);Hope this helps other people out, as i saw this request often!
Now you can use WordPress more as an event organizer/manager if future dates are tagged as publishedcheers!
HPS. I understand Otto’s view, but hell, it’s funky to use things for other purposes they’re designed for.
I used to use my old car as a storage space. Still could drive with it :pForum: Developing with WordPress
In reply to: Calendar does not display links on future postingsOk, some searching through the code and even as a total PHP noob, I’ve managed it 😉
line599, general-template.php
change
AND post_date < '" . current_time('mysql') . '\'', ARRAY_N);into
AND post_date <> '" . current_time('mysql') . '\'', ARRAY_N);Hope this helps other people out too!
Now you can use WordPress more as an event organizer/manager if future dates are tagged as publishedcheers!
HForum: Developing with WordPress
In reply to: Calendar does not display links on future postingsI would love to know this too. The calendar displays the months of future posts, but the dates aren’t linked.
This must be something small, right?