brz0
5/5/2016 - 2:05 PM

Basic snippet for custom shortcodes in WP

Basic snippet for custom shortcodes in WP

// Shortcode in functions.php
function caption_shortcode( $atts, $content = null ) {
	return '<span class="caption">' . $content . '</span>';
}
add_shortcode( 'caption', 'caption_shortcode' );

// When used like this
[caption]My Caption[/caption]

// The output would be
<span class="caption">My Caption</span>