treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Year Shortcode

Last updated on:

For the functions.php file:

function year_shortcode() {
  $year = date('Y');
  return $year;
}
add_shortcode('year', 'year_shortcode');

Usage

Use [year] in your posts.

View Comments

Leave a Comment

Use markdown or basic HTML and be nice.