Browse
For agents
About
WP Reading Progress
/
trunk
WP Reading Progress
vtrunk
Switch version
trunk
1.5.0
1.5.1
1.5.2
1.5.3
1.5.4
1.5.5
1.5.6
1.5.7
1.6.0
1.6.1
1.7.0
Overview
Code
wp-reading-progress
/
uninstall.php
uninstall.php
in WP Reading Progress trunk, at uninstall.php
12 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
//
if uninstall.php is not called by WordPress, die
3
if
(
!
defined
(
'
WP_UNINSTALL_PLUGIN
'
)
)
{
4
die
(
)
;
5
}
6
7
//
remove settings
8
delete_option
(
'
ruigehond006
'
)
;
9
delete_option
(
'
ruigehond006_upgraded_1.2.4
'
)
;
10
//
remove the post_meta entries
11
delete_post_meta_by_key
(
'
_ruigehond006_show
'
)
;
12