Skip to content

Instantly share code, notes, and snippets.

@barbwiredmedia
Created August 22, 2013 20:32
Show Gist options
  • Save barbwiredmedia/6312395 to your computer and use it in GitHub Desktop.
Save barbwiredmedia/6312395 to your computer and use it in GitHub Desktop.
Wordpress - Functions: Create [shortcode]
// Creates a shortcode
function HelloWorldShortcode() {
return '<p>Hello World!</p>';
}
add_shortcode('helloworld', 'HelloWorldShortcode');
//Output on page [helloworld]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment