PluginProbe
Easy Bootstrap Shortcode / 2.5
Easy Bootstrap Shortcode v2.5
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 / icon / plugin_shortcode.php

plugin_shortcode.php in Easy Bootstrap Shortcode 2.5, at shortcode/icon/plugin_shortcode.php

26 lines 639 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /* * *********************************************************
4 * BUTTONS
5 * ********************************************************* */
6
7 function osc_theme_icon($params, $content = null) {
8 extract(shortcode_atts(array(
9 'type' => '',
10 'color'=>'',
11 'class' => '',
12 'fontsize'=>''
13 ), $params));
14 if($color!=''){
15 $color='color:'.$color.';';
16 }
17 if($fontsize!=''){
18 $fontsize=' font-size:'.$fontsize.'px;';
19 }
20 $out = '<i class="glyphicon ' . $type . ' ' . $class . '" style="'.$color.$fontsize.'"></i>';
21 return $out;
22 }
23
24 add_shortcode('icon', 'osc_theme_icon');
25
26