Skip to content

Instantly share code, notes, and snippets.

@theodorocaliari
Last active August 29, 2015 14:07
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 theodorocaliari/d9bc369fb4bf4ea85d82 to your computer and use it in GitHub Desktop.
Save theodorocaliari/d9bc369fb4bf4ea85d82 to your computer and use it in GitHub Desktop.
WordPress ShortCode
<?php
//http://codex.wordpress.org/Shortcode_API
function custom_shortcode( $atts ){
return date('Ymd');
}
add_shortcode( 'date-custom-shortcode', 'custom_shortcode' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment