Year Shortcode [year]

PHOTO EMBED

Tue May 14 2024 22:39:20 GMT+0000 (Coordinated Universal Time)

Saved by @systemsroncal #php #wordpress

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

https://css-tricks.com/snippets/wordpress/year-shortcode/