Meta Tags Keyword Description | Dynamic Generation in Blogger
Wednesday, July 28, 2010 |
Edit Post
Dynamic Keyword Description Meta Tags to Improve Blogger SEO:
It took me awhile to research this technique, hopefully it'll save you some time. It creates meta tags dynamically in blogger for everything except archive paths, in which case it's left blank..
Open your blogspot account and proceed to the html template editor. Locate the <head> tag and paste the following code immediately below it:
<!--start dynamic description keyword title meta tags for Blogger --> <title><data:blog.pageTitle/></title> <b:if cond='data:blog.pageType != "archive"'> <meta expr:content='data:blog.pageName + ", " + data:blog.title' name='Description'/> <meta expr:content='data:blog.pageName + ", " + data:blog.title' name='Keywords'/> </b:if> <!--end dynamic description keyword title meta tags for Blogger -->
This will generate unique description and keyword meta tags constructed of your post title + blog title setting. It's a good SEO practice to have the title tag on top, and if you operate a multi-issue blog where global meta tags wouldn't be appropriate, then Dynamic Meta Tags will help search engines properly index your blogger content.
UPDATE:
Here's my setup: It sets the Page Title to that of the Item Title or Blog Title. -this removes the appended Blog Title + Item Title default Blogger behavior.
It simply leaves meta description blank -I've found that Google is great at producing concise descriptions in most cases.
<b:if cond='data:blog.pageName == ""'> <title><data:blog.title/></title> <b:else/> <title><data:blog.pageName/></title> </b:if> <b:if cond='data:blog.pageType != "archive"'> <meta expr:content='data:blog.pageName + ", " + data:blog.title' name='Keywords'/> <b:else/> </b:if>
Dynamic Page QR Code
Popular Posts
-
Product Manager Cover Letter: This real cover letter worked successfully at getting an interview as a product manager. Use it as a templat...
-
Creating randomized valid file paths is a common requirement for many applications such as the case of short url redirects. The Goo.gl url s...
-
If you're interested in placing QR tags dynamically on your site, here's how I did it in less than 5 minutes thanks to Google's ...
-
Cover Letter Examples that I have used successfully to get a job interview: Further to my last post on this topic, there's no substi...
-
Is there a scientific reason that can explain Why People are So stupid? It's not surprising that so many people take advantage of being...
-
Sample for Cover Letters Writing an effective cover letter is essential to get yourself noticed. Use your cover letter as a sample of your...
-
Decoded HTML Encoded HTML Entities /** * Encode HTML tags as HTML Entities * using jQuery * * Code takes raw...
-
In my opinion, Git is a programmers program. It is fast, feature-rich yet intuitive, kind of like Google...there's a new treasure waitin...
-
Blogger RSS URL s can be customized to syndicate content in a user friendly way. This is especially important if you operate a multi-issue b...
-
The example below uses Google's OpenID API to request and validate the user's GMail address. The visitor is first directed to Google...
6 comments:
Nice information.Thanks for sharing..
i was looking for a way how to imitate googles title handling in blogger but just ending up messing around..
but this works like a charm, thank you!!!
I've got unique title tag based on your code, thanks a lot. Anyway, meta description still doesn't work. Google still puts "homepage" description to all posts. Do you have anyway to fix that?
@Anonymous
I've found that it's best to leave meta description empty because Google is better at dynamically creating descriptions relevant to context searches.
The only time you'll ever see assigned meta descriptions show up in Google is when you do a filtered search such as site:mysite.com
Hope this helps.
very helpful for beginners like me, thank you very much
Post a Comment