Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@davidsword
Last active August 11, 2022 21:17
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 davidsword/394108430a76c36aa9cefb6c809dc187 to your computer and use it in GitHub Desktop.
Save davidsword/394108430a76c36aa9cefb6c809dc187 to your computer and use it in GitHub Desktop.
<?
// ❌ won't work, will show at top of page
add_shortcode('rocktheboat', function ()  {
   echo "hello world";
});
// ✅ will work, will replace shortcode with returned text
add_shortcode('rocktheboat', function () {
   return "hello world";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment