Skip to main content

How to Enable Search Description in Blogger

How to Enable Search Description in Blogger?


SEO(Search Engine Optimization) is a very important thing for any Blog/Website. Meta Keywords and Meta description is very helpful for on-page SEO. Today we are discussing how to add meta descriptions in Blogger Posts. Now blogger comes up with many advanced features and supports advanced SEO. Without SEO you are unable to get traffic from Google. No traffic means no revenue and no revenue means a waste of time and money. So search description plays a very important role in SEO.

How to Enable Search Description in Blogger

Why Search Description is Important?

Google is a very advanced search engine. There is various algorithm running in the background to provide you a better and more effective search result. However, these algorithm are very effective but there are various limitations to them because they are basically a computer program. They will not work for you until you did not tell them what you are targeting in your article. Basically, search description is built to describe the brief summary of your article/blog post.

Type of Search Description in Blogger

There is two types of search description for your blog allowed by Blogger.
First In which you have to give a search description for the whole blog in a single box.
Another one you have to provide search description for each and individual posts uniquely. If you are working on keywords and wants the better search ranking in google I suggest you to use the second one option. It works good for you. The details for activating search description is given below its easy and quite effective.

How to Define Search Description 

As we have discussed already how the search description is works for blog posts now its very important to put real,unique and relevant search description for  your blog posts. Don't use copy/paste and always avoid over stuffing. Over stuffing means you have to write the search description which is directly relate to your post.

How to Enable Search Description in Blogger

It is very easy to enable search description to your blog. Simple follow the steps.
  1. First login to your blogger account.
  2. Goto Settings › Search preferences
  3. Under Meta tags Enable Description ?  by clicking Edit button 
  4. Save the changes enable you the search description for your each blog post.

Where Write Search Description?

  • After enabling the search description goto the post editor.
  • Write new post on the right side there is a "Search Description" menu click on it and write down the description for your blog post as shown in the figure.
Search preferences
Now you can put meta description on each individual post in blogger.

Hope you like this article.

Comments

Popular posts from this blog

Join the Beauty Course for Massage Beauty License Training

Massage Beauty School of California: Massage beauty program is one of the top ten beauty courses which are well recognized and sought after in the beauty sector. Several students from various cities and states enroll in this training program to get better learning opportunities and understand the minute technicalities of beauty massaging services. Certified schools and beauty institutes located in Los Angeles are offering cutting-edge training to the students who are eligible for the program. Palace Beauty College is an accredited beauty school that does offer a massage therapy program and also offers holistic learning facilities to the students. The college has years of experience in providing massage therapy license training in Los Angeles for more than half a decade now. The college maintains its official website to reach out to distant students and provide them relevant information related to the available beauty courses. The college takes pride in its impressive infrastru...

Having issue with MDaemon Outlook Connector to connect MDaemon data with Outlook

Migration from MDaemon to Outlook is the right way to access MDaemon data in Outlook by using Outlook Connector Migration from MDaemon to Outlook Without Outlook Connector Migration from MDaemon to Outlook Overview: MDaemon Mail Server provides Outlook Connector for MDaemon which let you view and open MDaemon data with Outlook. Using Outlook Connector users will be able to view MDaemon Mail and contacts in Outlook. But if have you deleted any file from MDaemon then it will also missing from Outlook as well.   The way MDaemon Outlook Connector works is by keeping a locally cached copy file of the mail body in a database and the attach   files as a separate file. This is completely different from Microsoft Outlook Exchange caching where everything is kept in one OST file. The problem with this is it takes around 30 minutes to open Outlook (from a cold boot) which is quite unacceptable!! Sometimes users couldn’t able to send and receive email while using Ou...

Most frequently asked interview question on String in java

 Here we describe difference between (==) and .equals() :- Both of them very much  differ  in their significance and working as equals() method is present in the java.lang.Object class and it is expected to check for the equivalence of the state of objects! That means, the contents of the objects. Whereas the '==' operator is expected to check the actual object instances are same or not. Let us see an example we have two String objects and they are being pointed by two different reference variables as a1 and a2. a1 = new String("xyz"); a2 = new String("xyz"); Now, if you use the "equals()" method to check for their equivalence as if(a1.equals(a2)) System.out.println("a1.equals(a2) is TRUE"); else System.out.println("a1.equals(a2) is FALSE"); You will get the output as TRUE as the 'equals()' method check for the content equivality. Lets check the '==' operator.. if(s...