| 1 |
<?php |
| 2 |
|
| 3 |
/* * ********************************************************* |
| 4 |
* BUTTONS |
| 5 |
* ********************************************************* */ |
| 6 |
|
| 7 |
function osc_theme_labels($params, $content = 'Label') { |
| 8 |
extract(shortcode_atts(array( |
| 9 |
'type' => 'label-default', |
| 10 |
'class' => '' |
| 11 |
), $params)); |
| 12 |
$out = ''; |
| 13 |
$content = str_replace("<br />", '', $content); |
| 14 |
$content = str_replace("<br />\n", '', $content); |
| 15 |
$out = '<span class="label ' . $type . ' ' . $class . EBS_CONTAINER_CLASS.'">' . do_shortcode($content) . '</span>'; |
| 16 |
return $out; |
| 17 |
} |
| 18 |
|
| 19 |
add_shortcode('label', 'osc_theme_labels'); |
| 20 |
|
| 21 |
|