Skip to content

Instantly share code, notes, and snippets.

@mzalewski
Created January 28, 2017 20:56
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 mzalewski/4dd27d1e4b82fe00c3c5139ca9bdbe84 to your computer and use it in GitHub Desktop.
Save mzalewski/4dd27d1e4b82fe00c3c5139ca9bdbe84 to your computer and use it in GitHub Desktop.
Creating a shortcode
<?php
function myplugin_my_shortcode( $atts = array(), $content = '' ) {
echo "This is some shortcode output";
}
add_shortcode('my-shortcode','myplugin_my_shortcode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment