PluginProbe
Easy Bootstrap Shortcode / 4.4
Easy Bootstrap Shortcode v4.4
trunk 2.4.0 2.5 3.4 3.5 3.6 3.7 4.0.0 4.4 4.5 4.5.4 5.0.0 5.0.1 5.0.2
easy-bootstrap-shortcodes / shortcode / jumbotron / plugin_shortcode.php

plugin_shortcode.php in Easy Bootstrap Shortcode 4.4, at shortcode/jumbotron/plugin_shortcode.php

20 lines 759 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /* * *********************************************************
4 * Jumbotron
5 * ********************************************************* */
6
7 function osc_theme_jumbotron($params, $content = 'Label') {
8 extract(shortcode_atts(array(
9 'bgcolor' => '',
10 'class' => ''
11 ), $params));
12 $out = '';
13 $content = str_replace('<br class="osc" />', '', $content);
14 $content = str_replace('<br class="osc" />\n', '', $content);
15 $style=$bgcolor!=''?' style="background:'.$bgcolor.';"':'';
16 $out = '<div class="jumbotron ' . $class .EBS_CONTAINER_CLASS. '"'.$style.'>' . do_shortcode($content) . '</div>';
17 return $out;
18 }
19
20 ebs_backward_compatibility_callback('jumbotron', 'osc_theme_jumbotron');