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