Skip to content

Instantly share code, notes, and snippets.

@bavington
Last active December 23, 2015 20:19
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 bavington/6688579 to your computer and use it in GitHub Desktop.
Save bavington/6688579 to your computer and use it in GitHub Desktop.
Basic Wordpress Shortcode registry and callback function.
<?php
function last_updated_code() {
return "<p>This post was last edited on ".get_the_modified_date()." by ".get_the_modified_author()."</p>";
}
add_shortcode( 'lastupdated', 'last_updated_code' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment