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

plugin_shortcode.php in Easy Bootstrap Shortcode 3.5, at shortcode/buttons/plugin_shortcode.php

24 lines 761 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /* **********************************************************
3 * BUTTONS
4 * **********************************************************/
5 function osc_theme_button( $params, $content = null) {
6 extract( shortcode_atts( array(
7 'title' => 'osCitas',
8 'link' => '',
9 'btntag' => 'a',
10 'class' => '',
11 'target' => '',
12 ), $params ) );
13 $out = '';
14
15 if ($btntag == 'a') {
16 $out = '<a class="btn '.$class.'" href="'.$link.'" target="'.($target).'">'.$title.'</a>';
17 } elseif ($btntag == 'button' || $btntag == 'submit') {
18 $out = '<input class="btn '.$class.'" type="'.$btntag.'" value="'.$title.'">';
19 }
20 return $out;
21 }
22 add_shortcode( 'button', 'osc_theme_button' );
23
24