'#',
), $atts));
$out = "" .do_shortcode($content). "";
return $out; }
add_shortcode('button', 'button');
// BUTTON #2
function button_blue( $atts, $content = null ) {
extract(shortcode_atts(array(
'url' => '#',
), $atts));
$out = "" .do_shortcode($content). "";
return $out; }
add_shortcode('button_blue', 'button_blue');
// BUTTON #3
function button_green( $atts, $content = null ) {
extract(shortcode_atts(array(
'url' => '#',
), $atts));
$out = "" .do_shortcode($content). "";
return $out; }
add_shortcode('button_green', 'button_green');
// BUTTON #4
function button_orange( $atts, $content = null ) {
extract(shortcode_atts(array(
'url' => '#',
), $atts));
$out = "" .do_shortcode($content). "";
return $out; }
add_shortcode('button_orange', 'button_orange');
// BIG BUTTON
function big_button( $atts, $content = null ) {
extract(shortcode_atts(array(
'url' => '#',
), $atts));
$out = "" .do_shortcode($content). "";
return $out; }
add_shortcode('big_button', 'big_button');
?>