Skip to content

Instantly share code, notes, and snippets.

@vinicius73
Created May 15, 2014 15:06
Show Gist options
  • Save vinicius73/396fddbc9227593f8d18 to your computer and use it in GitHub Desktop.
Save vinicius73/396fddbc9227593f8d18 to your computer and use it in GitHub Desktop.
Shortcode para Botão
<?php
function shortcode_btn($atts)
{
$atts = shortcode_atts(array('url' => 'javascript:;', 'target' => '_top', 'name' => NULL), $atts);
$url = $atts['url'];
$target = $atts['target'];
$name = (is_null($atts['name'])) ? $url : $atts['name'];
return "<a href='" . $url . "' target='" . $target . "' class='btn btn-alt' >" . $name . "</a>";
}
add_shortcode('btn', 'shortcode_btn');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment