Skip to content

Instantly share code, notes, and snippets.

@michaeldeboeve
Created September 18, 2019 08:22
Show Gist options
  • Save michaeldeboeve/1d5c436b89721ad539e930afd3a06cb3 to your computer and use it in GitHub Desktop.
Save michaeldeboeve/1d5c436b89721ad539e930afd3a06cb3 to your computer and use it in GitHub Desktop.
Simple shortcode
<?php
function my_shortcode( $atts, $content = null ) {
return '<span class="myshortcode-class">' . $content . '</span>';
}
add_shortcode( 'myshortcode', 'my_shortcode' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment