CTA Shortcode
// Add Shortcode
function cta_shortcode( $atts , $content = null ) {
// Attributes
extract( shortcode_atts(
array(
'link' => '',
), $atts )
);
// Code
return '<a class="btn-primary" href="shortcode_atts['class']>' . $content . '</span>';
}
add_shortcode( 'cta', 'cta_shortcode' );