Skip to content

Instantly share code, notes, and snippets.

@doitlikejustin
Created August 1, 2013 22:54
Show Gist options
  • Save doitlikejustin/6136074 to your computer and use it in GitHub Desktop.
Save doitlikejustin/6136074 to your computer and use it in GitHub Desktop.
Simple WordPress shortcode
// goes in functions.php
// [simple]
function sc_simple($atts) {
return "this is some text";
}
add_shortcode('simple', 'sc_simple');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment