Skip to content

Instantly share code, notes, and snippets.

@michaeldeboeve
Created September 18, 2019 08:23
Show Gist options
  • Save michaeldeboeve/5bdc98f30c2edd8b6c6d5c059a495109 to your computer and use it in GitHub Desktop.
Save michaeldeboeve/5bdc98f30c2edd8b6c6d5c059a495109 to your computer and use it in GitHub Desktop.
<?php
function my_shortcode_attr( $atts, $content = null) {
$a = shortcode_atts( array(
'url' => '#',
'class' => ''
), $atts );
return '<a class="' . $a["class"] . '" href="' . $a["url"] . '">' . $content . '</a>';
}
add_shortcode( 'myshortcode', 'my_shortcode_attr' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment