You are here

function bs_shortcodes_shortcode_abbreviation in Bootstrap Theme Shortcodes 7

1 string reference to 'bs_shortcodes_shortcode_abbreviation'
bs_shortcodes_shortcode_info in ./bs_shortcodes.module

File

inc/elements/abbreviation.php, line 3

Code

function bs_shortcodes_shortcode_abbreviation($attrs, $text) {
  $attrs = shortcode_attrs(array(
    'abbreviation' => '',
    'title' => '',
  ), $attrs);
  $abbreviation = url($attrs['abbreviation']);
  if ($text) {
    $title = empty($attrs['title']) ? check_plain($text) : check_plain($attrs['title']);
    $title = $title;
    return '<abbr title="' . $title . '">' . $text . '</abbr>';
  }
  return $abbreviation;
}