Skip to content

Instantly share code, notes, and snippets.

@zackkatz
Created May 19, 2015 17:02
Show Gist options
  • Save zackkatz/866157910ab5ecc102cc to your computer and use it in GitHub Desktop.
Save zackkatz/866157910ab5ecc102cc to your computer and use it in GitHub Desktop.
Have a [hello_world] shortcode that outputs "Hello World"
<?php
function my_custom_hello_world() {
return "Hello World!";
}
add_shortcode( 'hello_world', 'my_custom_hello_world' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment