PluginProbe
Easy Bootstrap Shortcode / 3.7
Easy Bootstrap Shortcode v3.7
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 / btngrptool / plugin_shortcode.php

plugin_shortcode.php in Easy Bootstrap Shortcode 3.7, at shortcode/btngrptool/plugin_shortcode.php

18 lines 489 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 function osc_theme_btngrptoolbar($params, $content = null) {
4 extract(shortcode_atts(array(
5 'style' => '',
6 'class' => ''
7 ), $params));
8 $content = str_replace("]<br />", ']', $content);
9 $content = str_replace("]<br />\n", ']', $content);
10 $content = str_replace("<br />\n[", '[', $content);
11 $out = '<div class="btn-toolbar '.$class.'" role="toolbar">' . do_shortcode($content) . '</div>';
12
13 return $out;
14 }
15
16 add_shortcode('btngrptoolbar', 'osc_theme_btngrptoolbar');
17
18 ?>