Browse
For agents
About
Disable Comments & Delete All Comments
/
1.3.2
Disable Comments & Delete All Comments
v1.3.2
Switch version
1.3.3
1.3.2
trunk
1.0.0
1.0.4
1.0.5
1.0.8
1.0.9
1.1.1
1.1.3
1.1.5
1.1.6
1.1.7
1.1.8
1.1.9
1.3.0
1.3.1
Overview
Code
comments-plus
/
uninstall.php
uninstall.php
in Disable Comments & Delete All Comments 1.3.2, at uninstall.php
14 lines
345 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 uninstall.php is not called by WordPress, die
4
if
(
!
defined
(
'
WP_UNINSTALL_PLUGIN
'
)
)
{
5
die
;
6
}
7
8
//
remove plugin options
9
global
$
wpdb
;
10
11
$
wpdb
->
query
(
"
DELETE
FROM
{
$
wpdb
->
prefix
}
options
WHERE
option_name
LIKE
'
wbcr_comments_plus_%
'
;
"
)
;
12
$
wpdb
->
query
(
"
DELETE
FROM
{
$
wpdb
->
prefix
}
options
WHERE
option_name
LIKE
'
wbcr_cmp_%
'
;
"
)
;
13
14