Skip to content

Instantly share code, notes, and snippets.

@Edwardtonnn
Created May 16, 2019 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Edwardtonnn/3aaca8ce91e6a7c67df60f906cd6f319 to your computer and use it in GitHub Desktop.
Save Edwardtonnn/3aaca8ce91e6a7c67df60f906cd6f319 to your computer and use it in GitHub Desktop.
WP Shortcode
<?php
function currentYear( $atts ){
return date('Y');
}
add_shortcode( 'year', 'currentYear' );
//To use the shortcode
[year]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment