Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created September 10, 2014 16:29
Show Gist options
  • Save jlittlejohn/bb4a4512fe746b59f79a to your computer and use it in GitHub Desktop.
Save jlittlejohn/bb4a4512fe746b59f79a to your computer and use it in GitHub Desktop.
WP: Create Shortcode
// Example
function shortcode_name( $atts, $content = null ){
$a = shortcode_atts( array(
'example' => ''
), $atts );
return '<a id="example" data-example="' . $a['example'] . '">' . $content . '</a>';
}
add_shortcode( 'name', 'shortcode_name' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment