Skip to content

Instantly share code, notes, and snippets.

@theukedge
Created September 14, 2013 21:44
Show Gist options
  • Save theukedge/6565928 to your computer and use it in GitHub Desktop.
Save theukedge/6565928 to your computer and use it in GitHub Desktop.
<?php
// 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');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment