How To Generate Alt and Title Tags Automatically In Blogspot & WordPress





Image Optimization(SEO For Images):

image optimization also plays major role in SEO. Image optimization is nothing but the seo for images means optimizing the our blog images as SEO friendly and also covert images to text to the robots. Google robots are not reading the images in our blog post and also in some cases the images are low are not display due to lower connection or server busy in that case the image place is empty it effects our user connivance and also our site SEO process. Image Optimization also helps to  who create blog to get more rank in google 

Rules for alt tags:

  • Name your images in simple English.
  • If you sell any products in your site that have serial numbers or model number, give them as name in Alt tags
  • Do not use keywords as your alt tags (for example: alt="How To Create Alt tags automatically").
  • Don't use Alt tags for decorative images in blog. It may penalize your blog for over-optimization.
Finally, always do a daily check of your website from time to time. View the source of your webpages and check if your alt tags are filled out or not.

Plugin For Automatic Alt& Title Tags In WordPress: 

When you add an image to your blog, you get a option to add Alt and Title tag, which is use for image SEO. There is a simple way to add Alt tag is manually to every image you upload. If you have an already existing blog with lot's of images and you have to edit all old images to add alt tag, editing every single image is a very time-consuming task. Don't worry about manually editing there is SEO plugin to do it automatically  SEO Friendly Images WordPress Plugin.

Process for install WordPress plugin:
1.Login into your WordPress admin dash board.
2.Click on Plugins and select add new.
3. In search bar type keyword as 'SEO Friendly Images' and you find it.
4.Click on install and activate the plugin.
5.Once active the plugin you should change some manual changes.

By using this plugin you can add both Alt & Title tags automatically.

Here is the simple settings:


  • Use %name for Alt tag
  • %Title for Title tag


Auto Alt & Title Generator For Blogger:


In the blogger adding alt & Title tags is very big spot and there is no widgets and plugins in blogger to add automatically for the our blog post images. Then how to add alt and title tags automatically in blogger. Don't worry here we are giving you a simple tip by adding a small code into your html code it may helps you lot.

Process for adding auto Alt & Title generator:

1.Go to the Your Blogger page in your Blogger dashboard and click on Template.
2.Click on “Edit HTML” and press “Ctrl+F”.
3.Look for the </body>

4.Copy/paste the below code just right above it:



<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js' type='text/javascript'/>

//SEO SCRIPT POWERED BY www.tricks2win.com

<script type='text/javascript'>

//<![CDATA[

$(document).ready(function() {

 $('img').each(function(){

 var $img = $(this);

 var filename = $img.attr('src')

 $img.attr('title', filename.substring((filename.lastIndexOf('/'))+1, filename.lastIndexOf('.')));


 $img.attr('alt', filename.substring((filename.lastIndexOf('/'))+1, filename.lastIndexOf('.')));

 });
});
//]]>
</script>



and click on save template.

The above code will automatically take the name of the image and then adds as “Alt” and “Title” tag to all the images in your blog post.

Please Note: The rules above mentioned for Image Optimization is must to follow for better results. 


What do you think? Do you have any more tips for image SEO. Tell us about your valuable tip in comments below.

How To Generate Alt and Title Tags Automatically In Blogspot & WordPress How To Generate Alt and Title Tags Automatically In Blogspot & WordPress    Reviewed by Nandhu Roy on 15:00:00 Rating: 5

3 comments:

Powered by Blogger.
//SEO SCRIPT POWERED BY www.tricks2win.com