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' );