Browse
For agents
About
Easy Bootstrap Shortcode
/
3.4
Easy Bootstrap Shortcode
v3.4
Switch version
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
Overview
Code
easy-bootstrap-shortcodes
/
shortcode
/
iconhead
/
plugin_shortcode.php
plugin_shortcode.php
in Easy Bootstrap Shortcode 3.4, at shortcode/iconhead/plugin_shortcode.php
15 lines
336 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
function
osc_theme_iconhead
(
$
params
,
$
content
=
null
)
{
4
extract
(
shortcode_atts
(
array
(
5
'
class
'
=>
'
'
,
6
)
,
$
params
)
)
;
7
$
out
=
'
'
;
8
$
out
=
'
<h3><span class="glyphicon
'
.
$
class
.
'
"></span>
'
.
$
content
.
'
</h3>
'
;
9
10
return
$
out
;
11
}
12
13
add_shortcode
(
'
iconheading
'
,
'
osc_theme_iconhead
'
)
;
14
15