Disable Pingbacks/Trackbacks in Wordpress?

Jovani

Active member
Joined
Jul 10, 2012
Messages
338
Points
28
I have received too many emails Pingbacks/Trackbacks about a page on my wordpress blog?
Is it possible to disable Pingbacks/Trackbacks in Wordpress?
 

Alex_smith

New member
Joined
Dec 19, 2012
Messages
385
Points
0
I have received too many emails Pingbacks/Trackbacks about a page on my wordpress blog?
Is it possible to disable Pingbacks/Trackbacks in Wordpress?
Simply to disable Pingbacks/Trackbacks for a page or post in wordpress, you go to PhpMyadmin, go wp_posts table and search post_title for the page/post that you want to disable Pingbacks/Trackbacks, it will show specific page on the result.
After that, you update fields are comment_status and post_status with closed

If you want to disable Pingbacks/Trackbacks for all posts and pages in wordpress
Apply this SQL query
UPDATE wp_posts SET comment_status='closed' WHERE post_status = 'publish' AND post_type = 'post';
UPDATE wp_posts SET comment_status='closed' WHERE post_status = 'publish' AND post_type = 'page';
UPDATE wp_posts SET ping_status='closed' WHERE post_status = 'publish' AND post_type = 'page';
UPDATE wp_posts SET ping_status='closed' WHERE post_status = 'publish' AND post_type = 'page';
For safety reason, remember to backup your database before doing this.

Hope it helps!
 
Newer threads
Replies
6
Views
5,588
Replies
27
Views
19,778
Replies
25
Views
15,789
Latest threads
Replies
2
Views
303
Replies
1
Views
158
Replies
2
Views
233
Replies
1
Views
246
Replies
2
Views
156
Recommended threads
Replies
6
Views
2,876
Replies
22
Views
8,599
Replies
1
Views
4,315
Replies
5
Views
6,024
Replies
16
Views
7,004

Referral contests

Referral link for :

Sponsors

Popular tags

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top