Browse
For agents
About
Tabs Responsive – With WooCommerce Product Tabs Extension
/
trunk
Tabs Responsive – With WooCommerce Product Tabs Extension
vtrunk
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 trunk, at template/shortcode.php
20 lines
319 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
//
shortdode calling
3
add_shortcode
(
'
TABS_R
'
,
'
TABS_R_ShortCode
'
)
;
4
function
TABS_R_ShortCode
(
$
Id
)
{
5
ob_start
(
)
;
6
if
(
!
isset
(
$
Id
[
'
id
'
]
)
)
7
{
8
$
WPSM_Tabs_ID
=
"
"
;
9
}
10
else
11
{
12
$
WPSM_Tabs_ID
=
$
Id
[
'
id
'
]
;
13
}
14
require
(
"
content.php
"
)
;
15
16
17
wp_reset_query
(
)
;
18
return
ob_get_clean
(
)
;
19
}
20
?
>