Browse
For agents
About
Tabs Responsive – With WooCommerce Product Tabs Extension
/
1.5.1
Tabs Responsive – With WooCommerce Product Tabs Extension
v1.5.1
Switch version
trunk
1.0
1.1
1.2
1.3
1.4
1.5
1.5.1
1.5.2
1.5.3
1.5.4
1.5.5
1.5.6
1.5.7
1.5.8
1.5.9
1.6.0
1.6.1
1.6.2
1.6.3
1.6.4
1.6.5
1.6.6
1.6.7
1.6.8
All 97 releases
Overview
Code
tabs-responsive
/
template
/
shortcode.php
shortcode.php
in Tabs Responsive – With WooCommerce Product Tabs Extension 1.5.1, at template/shortcode.php
18 lines
294 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
add_shortcode
(
'
TABS_R
'
,
'
TABS_R_ShortCode
'
)
;
3
function
TABS_R_ShortCode
(
$
Id
)
{
4
ob_start
(
)
;
5
if
(
!
isset
(
$
Id
[
'
id
'
]
)
)
6
{
7
$
WPSM_Tabs_ID
=
"
"
;
8
}
9
else
10
{
11
$
WPSM_Tabs_ID
=
$
Id
[
'
id
'
]
;
12
}
13
require
(
"
content.php
"
)
;
14
15
wp_reset_query
(
)
;
16
return
ob_get_clean
(
)
;
17
}
18
?
>