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