Browse
For agents
About
My WP Customize Admin/Frontend
/
trunk
My WP Customize Admin/Frontend
vtrunk
Switch version
1.27.4
1.27.3
trunk
1.0
1.1
1.1.1
1.1.2
1.1.3
1.1.4
1.1.5
1.1.6
1.10
1.10.1
1.10.2
1.11
1.12
1.12.1
1.12.2
1.13
1.13.1
1.13.2
1.14
1.15.0
1.16
1.17.0
All 76 releases
Overview
Code
my-wp
/
shortcode
/
class.shortcode.php
class.shortcode.php
in My WP Customize Admin/Frontend trunk, at shortcode/class.shortcode.php
20 lines
240 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
if
(
!
defined
(
'
ABSPATH
'
)
)
{
4
exit
;
5
}
6
7
if
(
!
class_exists
(
'
MywpShortcode
'
)
)
:
8
9
final
class
MywpShortcode
{
10
11
public
static
function
get_shortcodes
(
)
{
12
13
return
apply_filters
(
'
mywp_shortcode
'
,
array
(
)
)
;
14
15
}
16
17
}
18
19
endif
;
20