Wordpress plugin: wp-days-ago.
My very first attempt on a Wordpress plugin is actually just a copy/past job from my own CMS. I wanted to get functionality I could not find in any other plugins: I simply wanted to display the number of days since a post or page was published.
The plugin will only display years and days and will not take into account that 24 hours are one day. If you publish a page or a post at 23:59, it will be marked with “yesterday” at 00:00 even if it’s only a minute since you published. In some cases, the plugin will display a human readable text instead of the days count. Today is “today” and not “0 days ago”. Yesterday is, well, “yesterday”, while anything published seven days ago is posted “a week ago”. If an entry is more than a year old, the plugin will display the post date as “X year, Y days”.
If you want to use it yourself, simply follow these instructions:
- Download here (v1.0).
- Unzip the contents of the downloaded file to the /wp-content/plugins/ directory of your Wordpress installation.
- Log in to your Wordpress dashboard and activate the wp_days_ago plugin that should now be visible in the list.
- You can now insert <? wp_days_ago(); ?> anywhere in The Loop in your Wordpress theme.
The wp_days_ago plugin takes one parameter; the timezone offset between your Wordpress time zone settings and the server your Wordpress installation is running on. In my case I write everything in Central European Time, but the server is located in Sydney, Australia. That’s a -8 hour time zone offset from the server to my local time, and to get things right, I have to use -8 as the time zone offset parameter, like this: <? wp_days_ago(-8); ?>.
This plugin is also available through the Wordpress plugin directory.
September 6th, 2008 at 13:19:02
[...] wp-days-ago,提示文章或者页面是多少时间前撰写的。 用过twitter的朋友都知道twitter会提示你follow的朋友某条信息是多久前发出的,这个插件就是用来实现这样一个效果。当然作为Blog不用像twitter那样精确到秒或者分钟,本插件会提示文章是“今天” “昨天” “x天前” “上星期” “x年又x天”。 [...]