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 / thumbnail / plugin_shortcode.php

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

35 lines 861 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_oscitasthumbnail($params, $content = 'Label') {
8 extract(shortcode_atts(array(
9 'src' => '',
10 'class' => '',
11 'link' => '',
12 'border'=>''
13 ), $params));
14 $out = '';
15 if ($border != '') {
16 $borderClass = 'img-thumbnail';
17 } else {
18 $borderClass = 'img-responsive';
19 }
20
21
22 //$out = ' <div class="img-thumbnail ' . $class . '">';
23 if ($link != '') {
24 $out .='<a href="' . $link . '">';
25 }
26 $out .= '<img src="' . $src . '" class="' . $borderClass.EBS_CONTAINER_CLASS . ' oscitas-res-image">';
27 if ($link != '') {
28 $out .='</a>';
29 }
30 return $out;
31 }
32
33 add_shortcode('thumbnail', 'osc_theme_oscitasthumbnail');
34
35