function bs_shortcodes_shortcode_well_small in Bootstrap Theme Shortcodes 7
1 string reference to 'bs_shortcodes_shortcode_well_small'
File
- inc/
elements/ wells.php, line 61
Code
function bs_shortcodes_shortcode_well_small($attrs, $text) {
$attrs = shortcode_attrs(array(
'well_small' => '',
), $attrs);
$well_small = url($attrs['well_small']);
if ($text) {
return '<div class="well well-sm">' . $text . '</div>';
}
else {
return $text;
}
return $well_small;
}