Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

PullQuote

// Add Shortcode
function tumags_pullquote_shortcode( $atts , $content = null ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'direction' => 'right',
		),
		$atts,
		'pullquote'
	);

	return '<div class="pullquote"> . $content . </div>';

}
add_shortcode( 'pullquote', 'tumags_pullquote_shortcode' );