Created
January 28, 2017 20:56
-
-
Save mzalewski/4dd27d1e4b82fe00c3c5139ca9bdbe84 to your computer and use it in GitHub Desktop.
Creating a shortcode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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