| 1 |
<?php |
| 2 |
|
| 3 |
/* * ********************************************************* |
| 4 |
* BUTTONS |
| 5 |
* ********************************************************* */ |
| 6 |
|
| 7 |
function osc_theme_icon($params, $content = null) { |
| 8 |
extract(shortcode_atts(array( |
| 9 |
'type' => '', |
| 10 |
'class' => '', |
| 11 |
), $params)); |
| 12 |
$out = '<i class="glyphicon ' . $type . ' ' . $class . '"></i>'; |
| 13 |
return $out; |
| 14 |
} |
| 15 |
|
| 16 |
add_shortcode('icon', 'osc_theme_icon'); |
| 17 |
|
| 18 |
|