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.

Jitendra Vaswani
This author is verified on BloggersIdeas.com

Jitendra Vaswani is a Digital Marketing Practitioner and renowned international keynote speaker who has embraced the digital nomad lifestyle as he travels around the world. He founded two successful websites, BloggersIdeas.com & Digital Marketing Agency DigiExe of which his success stories have expanded to authoring "Inside A Hustler's Brain : In Pursuit of Financial Freedom” (20,000 copies sold worldwide) and contributing to “International Best Selling Author of Growth Hacking Book 2". Jitendra designed workshops for over 10000+ professionals in Digital marketing across continents; with intentions ultimately anchored towards creating an impactable difference by helping people build their dream business online. Jitendra Vaswani is a high-powered investor with an impressive portfolio that includes Imagestation. To learn more about his investments, Find him on Linkedin, Twitter, & Facebook.

Affiliate disclosure: In full transparency – some of the links on our website are affiliate links, if you use them to make a purchase we will earn a commission at no additional cost for you (none whatsoever!).

Comments (3)

  1. This is a way to report legacy blog systems that you’ve linked to them. And we have to admit that some individuals or companies have abused the TrackBack feature to insert spam links on some blogs. And I find this post of yours very simple and catchy, clear and concise! I am pretty sure this one will be very helpful. Thanks for this!

    This comment was left on the Internet marketing site – kingged.com where this post shared.

  2. Three simple steps indeed. You are right about spammers taking advantage of trackbacks to achieve their spam objectives. These tips will help people dealing with this problem.

    Thanks for writing about this and sharing this on the Internet marketing social networking and bookmarking site – Kingged.com where I found and “kingged” this, Jitendra!

Leave a Comment