Insider Tip
// Add Shortcode function insider_tip_shortcode( $atts , $content = null ) { // Attributes $atts = shortcode_atts( array( 'align' => 'center', ), $atts, 'insider_tip' ); return '<div class="note '. $atts['align'] . '"><div><h4 class="insidertip_'. $atts['align'] . '"><span class="title"><span class="inner">INSIDER TIP</span></span><span class="body">' . $content . '</span></h4></div></div>': } add_shortcode( 'insider_tip', 'insider_tip_shortcode' );