Created
November 29, 2016 12:55
-
-
Save saroarhossain57/f0511921e48023228d26bfede01b7839 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function btn_shortcode($atts, $content=null){ | |
extract(shortcode_atts(array( | |
'type' => 'theme', | |
'link' => '#', | |
'text' => 'btn theme' | |
), $atts)); | |
return '<a class="btn btn-'.$type.'" href="'.$link.'">'.$text.'</a>'; | |
} | |
add_shortcode('btn', 'btn_shortcode'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment