Skip to content

Instantly share code, notes, and snippets.

@alandbh
Created February 23, 2016 19:29
Show Gist options
  • Save alandbh/959eb139ec3598374453 to your computer and use it in GitHub Desktop.
Save alandbh/959eb139ec3598374453 to your computer and use it in GitHub Desktop.
Shortcode
// 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