function bs_shortcodes_shortcode_glyphicons in Bootstrap Theme Shortcodes 7
1 string reference to 'bs_shortcodes_shortcode_glyphicons'
File
- inc/
elements/ glyphicons.php, line 3
Code
function bs_shortcodes_shortcode_glyphicons($attrs, $text) {
$attrs = shortcode_attrs(array(
'name' => '',
'glyphicons' => '',
), $attrs);
if ($text) {
$name = empty($attrs['name']) ? check_plain($text) : check_plain($attrs['name']);
$name = $name;
return '<span class="glyphicon glyphicon-' . $name . '"></span>' . $text;
}
return $glyphicons;
}