alandbh
2/23/2016 - 7:29 PM

Shortcode

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'));