Skip to content

Instantly share code, notes, and snippets.

@mattradford
Created August 21, 2015 12:13
Show Gist options
  • Save mattradford/d6651c696bdce9e13679 to your computer and use it in GitHub Desktop.
Save mattradford/d6651c696bdce9e13679 to your computer and use it in GitHub Desktop.
Simple button shortcode
function tend_button( $atts, $content = null ) {
extract(shortcode_atts(array(
'link' => '#',
'class' => 'turq',
), $atts));
$out = '<a class="button ' .$class. '" href="' .$link. '">' .do_shortcode($content). '</a>';
return $out;
}
add_shortcode('button', 'tend_button');
add_filter('widget_text', 'do_shortcode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment