Missing WordPress Gravatar ALT tag value fix kaise kare

यदि आपका ब्लॉग वर्डप्रेस पर है तो उसमे कुछ कॉमन एरर जरूर आता ही होगा जैसे की Gravatar ALT tag, ऐसे मे इस issue को फिक्स करना जरुरी होता है ताकि साइट की रैंकिंग इनक्रीस हो और उसके पेजेज टॉप मे रैंक कर सके

आज के इस पोस्ट मे हमने Gravatar ALT tag error को फिक्स करने के बारे मे बताया है ताकि आपका साइट fully optimized हो

Gravatar ALT tag missing error क्या है

वर्डप्रेस ब्लॉग मे जो Author image होता है उसमे पहले से Alt tag ऐड नहीं करने के कारण आता है वर्डप्रेस साइट मे नार्मल Gravatar ALT tag missing को Easily find करके फिक्स किया जा सकता है जबकि Gravatar ALT tag को नहीं, तो फिर इसे कैसे फिक्स करें

Gravatar ALT tag missing issue find kaise kare

ये issue जब आप साइट speed check करेंगे तो वहां पर दिख जायेगा Site speed check करने के लिए कई सारे बेस्ट टूल है जैसे की google page insights, gtmatrix, Webdev etc.. है आप उनका इस्तेमाल करें ये सभी साइट स्पीड analyze करते है और ऐसे element को find करते है जिनसे साइट slow run होता है

Gravatar ALT tag missing Issue fix कैसे करें

Gravatar ALT tag missing को फिक्स करने के लिए आप कॉडिंग यूज़ कर सकते है आप यहाँ बताए गए प्रोसेस को फ़ॉलो करें

Step. 1 नीचे दिए गए कोड कॉपी करें और वर्डप्रेस मे लॉगिन करें

function crunchify_gravatar_alt($crunchifyGravatar) {
	if (have_comments()) {
		$alt = get_comment_author();
	}
	else {
		$alt = get_the_author_meta('display_name');
	}
	$crunchifyGravatar = str_replace('alt=\'\'', 'alt=\'Avatar for ' . $alt . '\' title=\'Gravatar for ' . $alt . '\'', $crunchifyGravatar);
	return $crunchifyGravatar;
}
add_filter('get_avatar', 'crunchify_gravatar_alt');

Step.2 वर्डप्रेस डैशबोर्ड मे Appearance > theme editor > Function.php file open करें और कॉपी किए हुए कोड Function.php file मे सबसे लास्ट मे peste कर दे

और File Update पर क्लिक करें

यदि आप theme edit नहीं करना चाहते है तो Code snippet plugin use कर सकते है कोड insert करने के लिए |

लीजिये आपके वेबसाइट का Gravatar ALT tag missing Issue fix हो चूका है आप इसे चेक करने के लिए google page insights का इस्तेमाल कर सकते है

इस पोस्ट से जुड़े कोई भी सवाल और फीडबैक हो तो हमें जरूर बताए आपको लगे की ये पोस्ट उपयोगी है तो इसे सोशल साइट्स पर जरूर शेयर करें

Share on:

My Name is manish i am the founder of this successbranch blog. the main objective this blog is to promote hindi in the world . for this, i share all kinds of information here in hindi Learn More

2 thoughts on “Missing WordPress Gravatar ALT tag value fix kaise kare”

  1. Manish kumar,

    Aadarsh this side. It is my first time commenting on your blog page and am glad to say that you have shared an awesome content providing helpful tips to fix the issue of missing WordPress gravatar alt tag. You have explained very nicely along with easy steps that are so clear and easy to understand. Considering your steps will be helpful and allows user to fix the issue.

    After reading this guide am sure that this post will surely help lots of people, readers and especially WordPress-user to sort-out the issue.

    Very useful and keep sharing more similar post.

    Thanks,
    -Aadarsh

    Reply

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.