Categories: WordPress Tutorials

How to Disable Trackbacks and Pingbacks in WordPress by 3 Simple Ways

Most of the professional blogger use WordPress platform for their blogs. Because WordPress provides different themes and many plugins to make your blog very powerful. So WordPress is undoubtedly the best choice for bloggers. Whenever you interlink to at least one of posts in your own website, WordPress generates it as a trackback and shows it as comment in dashboard. Some Webmasters and Bloggers find this handy for SEO functions, that’s why they approve and a few gets irritated and trashes them.

Recommened : Best WordPress Plugins List

Trackbacks cause a lot of SPAM on your site. As your website gets popular, you will notice people will just copy your content and then send a trackback to your website, so they can get fake traffic to their  content that they plagiarized from your website. This practice is very common among spammers. Bloggers do get annoy when they receive pings created by WordPress.

If you want to stop future annoying pings in WordPress then use these 3 methods and you will be free of future pings in your blog.

No Self Pings

As I have describe about this plugin in my early posy, No self pings plugin is very useful plugin for automatic pings generated by WordPress, suppose you have written one post and you have interlink that post to other posts, so this is very annoying for bloggers to see that pings are generated in comment section. So it prevent self ping created by your own WordPress blog. So now with this plugin you can easily stop annoying pings.

Using Php MyAdmin in hosting Cpanel

How to stop annoying existing pingbacks in WordPress with your hosting cpanel. For that you have run MYSQL query in your database, but before doing so I would like to inform you that create a backup of your database. Because in case if anything goes wrong you can lose your data.

First you need to login to Php Myadmin in your hosting cpanel.

Then after that you need to click SQL tab in your database.

You have execute this query and you are done then.

UPDATE wp_posts SET ping_status=’closed’ WHERE post_status = ‘publish’ AND post_type = ‘post’;

UPDATE wp_posts SET ping_status=’closed’ WHERE post_status = ‘publish’ AND post_type = ‘page’;

So after running this query you will be free of any annoying pings that are existing on your WordPress blog.

Turn them off in your functions.php file:

Add this to your theme’s functions.php file:

//remove pings to self

 function no_self_ping( &$links ) {

 $home = get_option( ‘home’ );

 foreach ( $links as $l => $link )

 if ( 0 === strpos( $link, $home ) )

 unset($links[$l]);

 }

 add_action( ‘pre_ping’, ‘no_self_ping’ );

I hope above 3 described methods helps you in stopping WordPress pings, in case you face any trouble regarding this drop me your query in the comment section, I will assist you at my best.

Do you have any other methods to stop this, share in the comments below!!

Image Credits: Flickr

You can also Join BloggersIdeas on Facebook & Google+ for more similar updates.

arun singh

Arun Singh is a experienced server management geek and he has more than 8 years of experienced handling hosting server and he do sometimes share his knowledge in digital marketing. He currently with private company in Mumbai, India and he handles server management at BloggersIdeas.com.

Share
Published by
arun singh

Recent Posts

Best Restrict Content Pro Alternatives & Competitors: Top 3 Pick

Looking for Best Restrict Content Pro Alternatives , don't worry, I got you covered. Membership…

7 minutes ago

MobiLoud Review 2025 Is It Good? My Experience

In this MobiLoud Review, I look at one of the most popular WordPress mobile app…

7 minutes ago

Beaver Builder Vs Elementor Vs Thrive Architect: In Depth 2025

WordPress is the most used (CMS) Content Management System around the world as it gives…

4 hours ago

List of Top 15 Best WordPress Author Bio Plugins 2025 (Handpicked)

  Nowadays an author biography is so much more than an online trend especially when…

5 hours ago

Top 20 Fashion WordPress Themes For Blogs & Shops 2025

  As it well said by Bill Cunningham “Fashion is the armor to survive the…

7 hours ago

Top 20 Best Cryptocurrency WordPress Plugins 2025 (Updated)

  If you are willing to build a website for the coin market, then you…

9 hours ago