PluginProbe
Easy Bootstrap Shortcode / 3.6
Easy Bootstrap Shortcode v3.6
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 / image / plugin_shortcode.php

plugin_shortcode.php in Easy Bootstrap Shortcode 3.6, at shortcode/image/plugin_shortcode.php

23 lines 517 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_image($params, $content = 'Label') {
8 extract(shortcode_atts(array(
9 'src' => '',
10 'class' => '',
11 'shape' => ''
12 ), $params));
13 $out = '';
14
15
16 $out = '<img src="' . $src . '" class="' . $class .' '. $shape . '">';
17
18 return $out;
19 }
20
21 add_shortcode('image', 'osc_theme_image');
22
23