Skip to content

Instantly share code, notes, and snippets.

@hslaszlo
Last active January 2, 2016 10:08
Show Gist options
  • Save hslaszlo/8287300 to your computer and use it in GitHub Desktop.
Save hslaszlo/8287300 to your computer and use it in GitHub Desktop.
Wodpress functions
<?php
// link shortcode
function mainurl_function($atts) {
extract(shortcode_atts(array(
'text' => 'Text',
'url' => 'http://yourdomain.com',
), $atts));
return '<a href="'. $url . '" class="contactlink" >'. $text . '</a>';
}
add_shortcode('mainlink', 'mainurl_function');
// usage: [mainlink text="" url=""]
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment