Created
February 23, 2016 19:29
-
-
Save alandbh/959eb139ec3598374453 to your computer and use it in GitHub Desktop.
Shortcode
This file contains hidden or 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
// Shortcode de botões | |
class short_botao { | |
function shortcode($atts, $content = null) | |
{ | |
extract(shortcode_atts(array( | |
'classe' => '', | |
'id' => '', | |
'link' => '#' | |
), $atts)); | |
return | |
" | |
<a class='button $classe' id='$id' href='$link'>$content</a> | |
" | |
; | |
} | |
} | |
add_shortcode('botao', array('short_botao', 'shortcode')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment