PluginProbe ʕ •ᴥ•ʔ
Browse
Analyzed
Analysis
Public Post Preview
/
1.3
Public Post Preview
v1.3
Switch version
trunk
1.0
1.1
1.2
1.3
2.0
2.0.1
2.1
2.1.1
2.10.0
2.2
2.2-beta
2.3
2.4
2.4.1
2.5.0
2.6.0
2.7.0
2.8.0
2.9.0
2.9.1
2.9.2
2.9.3
3.0.0
3.0.1
3.1.0
3.1.1
3.1.2
Overview
Code
Analysis
public-post-preview
/
uninstall.php
public-post-preview
Last commit date
public-post-preview.php
15 years ago
readme.txt
13 years ago
screenshot-1.png
17 years ago
uninstall.php
16 years ago
uninstall.php
9 lines
1
<
?
php
2
//
If uninstall/delete not called from WordPress then exit
3
if
(
!
defined
(
'
ABSPATH
'
)
&&
!
defined
(
'
WP_UNINSTALL_PLUGIN
'
)
)
4
exit
(
)
;
5
6
//
Delete option from options table
7
delete_option
(
'
public_post_preview
'
)
;
8
?
>
9