How To Turn off Pingbacks in WordPress-New Tutorial in Hindi

| | 10 Minutes Read

आज हम बात करेंगे How To Turn off Pingbacks in WordPress के बारे में और सीखेंगे की Self Pingbacks क्या है और क्यों और कैसे आप Self-Pingbacks को disable कर सकते हो. इस post में आपको मैं self pingbacks को with और without plugin disable करना बताऊंगा. WordPress Tutorial in Hindi

WordPress CMS में ऐसे बहुत से features है जो कुछ bloggers के बहुत काम के है और कुछ bloggers के लिए  बिलकुल भी काम के नही है लेकिन उनके बारे में समझने और सीखेंगे में हर blogger को बहुत ज्यादा time लग जाता है और आज हम भी ऐसे ही एक feature (Self Pingbacks) के बात करने वाले है.

इस post को आगे पढनें से पहले में आपको suggest करूँगा की आप मेरी “WordPress Trackbacks and Pingbacks क्या है” post को पढ़े क्योंकि Self-Pingbacks भी इन दोनों features से ही related है और उस post को पढनें से भी आपको बहुत कुछ नया सीखने को मिलेगा.

PingBacks Kya Hai

सभी bloggers जब भी कोई new post लिखते है तो उस post में अपनी blog की कुछ ऐसी posts को link देते है जो उस post से related हो और आपके उस post को more understandable बनाता है और इस process को internal link (interlinking) कहा जाता है.

अपनी posts में अपनी दूसरी posts को link करना यानी interlinking को SEO के लिए अच्छा माना जाता है और इससे आपके blog का bounce rate भी कम रहता है लेकिन अगर आपके WordPress पर pingbacks enabled है तो posts interlinking पर WordPress automatically आपके एक notification send करता है.

WordPress Tutorial in Hindi

ये internal link notification as a comment आपके WordPress dashboard के comment section में नजर आता है जिसे हम Self Pingbacks कहते है. अगर आप इस self pingbacks (comment) को approve करते हो तो जिस post को आपने link किया है उस post के comments में आपको अपनी new post का link show होगा.

हर blogger अपने new posts में others posts को link जरुर करते है लेकिन उन internal link के self pingbacks के comment notifications busy bloggers को बहुत परेशान करते है क्योंकि इन सभी फालतू के comments को moderate (delete) करने में बहुत time waste होता है इसलिए self pingbacks को disable कर देना चाइये.

How To Turn off Pingbacks in WordPress

By Default Word Press में Self Pingbacks Enable होता है जिसकी वजय से Bloggers का Word Press Dashboard का Comment Section फालतू के Self Pingback Comments से भर जाता है.

अगर आप भी अपना कीमती समय self pingbacks के comments को moderate करने में waste नही करना चाहते हो तो आपको भी मेरी तरह अपने WordPress blog पर self-pingbacks को disable कर देना चाइये.

आप self pingbacks को code की help से और plugin की हेल्प disable कर सकते हो मैंने नीचें दोनों method को बताया है आपको जो easy लगे आप उसे follow कर सकते हो. मैंने Gyanians पर first method को follow किया है.

Method 1: Disable Self Pingbacks without using plugins

नीचे जो Code दिया है उसे Copy करके अपने Word Press के Appearance >> Editor में जाकर Functions.Php में सबसे नीचें Paste कर दीजिये और File को Update कर दीजिये.

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' );

Method 2: Disable Self Pingbacks using plugins

मैं आपको suggest करूंगा की आप Self pingback को disable करने के लिए आप first method को ही use करें क्योंकि ये जरुरी नही है की आप हर काम के लिए plugin install करें. अगर आप Self Pingbacks को किसी plugin से disable करना चाहते हो तो आप No Self Pings plugin को use कर सकते है.

No Self Pings Plugin की खाश बात ये है की इसकी Help से Self-Pingbacks को Disable करने के लिए Simple आपको इस Plugin Install करके Activate करना है और इसके अलावा कोई Others Settings नही करनी है.

आशा करते है की आपको ये How To Turn off Pingbacks in WordPress का WordPress Tutorial in Hindi post पसंद आई होगी. अगर आपको इस post से related कोई सवाल या सुझाव है तो नीचे comment करें और इस post को अपने दोस्तों के साथ जरुर share करें.

Author:

Hello!! दोस्तों मेरा नाम Aryan है. मैं gyanians.com का Writer हूँ. मुझे हिंदी में Educational Blogs लिखना पसंद है. मैं इन Blogs की मदद से आप तक सभी तरह के Wordpress से जुड़ी जानकारी एवं Technical Course Exams की जानकारी पहुंचाना चाहता हूँ.मेरा आपसे निवेदन है की आप इसी तरह मेरा सहयोग देते रहें और ज़्यादा से ज़्यादा लोगों के साथ मेरे लिखे Content को शेयर करें.मैं आप सभी के लिए Latest जानकारियाँ उपलब्ध करवाता रहूँगा.

Questions Answered: (2)

Leave a Reply

Your email address will not be published. Required fields are marked *