I was getting tired of either being generic about my age (twentysomething), or having to update it every year in my About pages. So instead, I set about creating a shortcode that would automatically update my age every year. Here is the snippet that you need to drop into your functionality plugin:
// DISPLAY YOUR AGE //
function whats_my_age_again($birthday) {
extract( shortcode_atts( array(
'birthday' => 'birthday'
), $birthday));
return date("Y", time() - strtotime($birthday)) - 1970;
}
add_shortcode('show-my-age', 'whats_my_age_again');
Now, in order to display your age, you just need to paste the shortcode in to your page, using the ‘birthday’ attribute to tell WordPress when you were born. For example, for me, it would look like this:
I am [show-my-age birthday="02/19/1985"] years old.
Aside from showing you that it’s my birthday soon, (feel free to send me some chocolates), this shortcode will do the leg work for you and update your age automatically. And then, if you’re feeling a little bit old, you can just tweak your shortcode and instantly make yourself feel better. Ta da!
Dave Clements has been building websites for close to a decade and in 2010, he formalised that by starting his own company, The UK Edge. He now works on a variety of web projects, from simple tasks like installing a new WordPress site, to consulting on problems, or redesigning his clients' sites. He also runs Do It With WordPress, a site dedicated to providing free tutorials on WordPress.
When he's not building your new website, you can find Dave eating Wheat Thins, spending time with friends and family, watching Indie films, fostering kittens from the local Humane Society, listening to some dubstep, dance and electronic rock, and exploring the world.
I used your calculation against the getAge3 function from that page and was able to spot it being wrong when the birthday is the previous or next day from the current date.
March 26, 2013 at 3:23 pm
The age will occasionally be calculated incorrectly with the calculation you are using.
See this post for 3 different functions for calculating age: http://spyk3lc.blogspot.com/2012/03/php-get-age-comparison-results-of-3.html
I used your calculation against the getAge3 function from that page and was able to spot it being wrong when the birthday is the previous or next day from the current date.