PluginProbe
Easy Bootstrap Shortcode / 4.5
Easy Bootstrap Shortcode v4.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 / rule / plugin_shortcode.php

plugin_shortcode.php in Easy Bootstrap Shortcode 4.5, at shortcode/rule/plugin_shortcode.php

24 lines 618 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /* * *********************************************************
4 * HR Rule
5 * ********************************************************* */
6
7 function theme_hrrule($params, $content = null) {
8 extract(shortcode_atts(array(
9 'style' => '',
10 'class' => '',
11 'margin' => ''
12 ), $params));
13 $out = '';$margin1='';
14 if ($margin != '') {
15 $margin1 = ' style="margin:' . $margin . 'px 0"';
16 }
17 $out = '<hr ' . $margin1 . 'class="' . $class . ' ' . $style . ' osc-rule" />';
18
19 return $out;
20 }
21
22 add_shortcode('rule', 'theme_hrrule');
23
24