-->

Hiển thị các bài đăng có nhãn META. Hiển thị tất cả bài đăng
Hiển thị các bài đăng có nhãn META. Hiển thị tất cả bài đăng

Chủ Nhật, 20 tháng 3, 2011

Blogspot SEO optimization – SEO Title Tags


Why should you change the default Blogger  title structure?

SEO | In the default option Blog title appears first and post title pushed to the end. Default blogger template comes with “blog title + page title” like this in post pages. In this tutorial explain how to change the blogger title for SEO friendly.
1. Go to Blogger Dashboard > Design > Edit HTML
2. Search for this tag:
<title><data:blog.pagetitle/></title>
3. Replace the above code with this:
<b:if cond=’data:blog.pageType == &quot;index&quot;’>
<title><data:blog.pageTitle/></title>
<b:else/>
<title><data:blog.pageName/> | <data:blog.title/></title>
</b:if>
4. Save your template. Now you will notice the change in title’s in your browser’s title bar.







Thứ Hai, 7 tháng 3, 2011

How To Improve Your Blogs Google Rank With Meta Tags & Description



In this post i will show you how to add Meta Tags And Meta Description to your blog.Improving your search engine rank is key to the success of your blog.This is known as S.E.O. (Search Engine Optimization).
Large companies spend a fortune on S.E.O. ,That's great if you have a fortune to spend ! Search engines use automated spiders and crawlers, to collect information from your blog.They collect URL'S ,Titles,etc...
They also collect keywords from the early parts of your blog posts.

However you don't know which words are taken as keywords connected to your blog, It's likely the keywords been taken are not relevent to your blog at all. In this case your blog won't be indexed properly in search engines.

Theres also a chance your highly relevant keywords might not even be used to index your blog.This will result in your blog being ranked behind Thousands of others in searches !

But you can take control !

You can add Meta Tags and Description to your blog.

How To Improve Your Blogs Google Rank With Mata Tags & Discription

Now YOUR telling the search engine spiders and crawlers the key words and description YOU want your blog to be indexed under.


So lets do it !

First you must copy the code below and add a meta description and meta keywords (as shown in bold) as follows:


<meta content='text/html; charset=utf-8' http-equiv='Content-Type'/>
<meta content='PUT BLOG DISCRIPTION HERE.' name='description'/>
<meta content='PUT, KEYWORDS, HERE, SEPERATED, BY, COMMA,' name='keywords'/>


Heres an example of how the code might look for this blog:
(Just a quick example not my actual meta content)


<meta content='text/html; charset=utf-8' http-equiv='Content-Type'/>
<meta content='SPICE UP YOUR BLOG BLOG TIPS TRICKS' name='description'/>
<meta content='blog, tips, tricks,' name='keywords'/>


Notes on Description:'PUT BLOG DISCRIPTION HERE'.-TRY KEEP IT LESS THAN 150 CHARACTERS

  • This explains its self,Keeping it under 150 characters is search engine friendly,you don't have to use 150 characters it can be as short or long as you wish once its relevant to your blog.






  • Notes on Keywords :'PUT, KEYWORDS, HERE, SEPERATED, BY, COMMA,'-YOU CAN ADD AS MANY AS YOU LIKE - SEPARATE BY COMMAS - DON'T USE THE SAME WORD MORE THAN 5 TIMES

  • Think which words or phrases best describe your blog.Repeating a word more than 5 times can be seen as spam by search engines.






  • Adding The Code To Your Blog :

    We Are Nearly FinishedIf you need more help or have an opinion or suggestion Please leave a comment Below.It also really helps me to get feedback..

    1.Click 'Layout'-->'Edit Html' For your blog.

    2.Find the following piece of code in your blogs html:
    (Its very close to the top)


    <head>

    3.Add the meta content code Directly Below <head>

    4.Click save and your finished.

    Thứ Sáu, 25 tháng 2, 2011

    Thủ thuật Seo BlogSpot hiển thị tiêu đề bài viết

    Như các bạn thấy bình thường blogger hiển thị Title nhu hình dưới:












    Như các bạn thấy, nếu hiển thị kiểu này sẽ không tốt cho SEO(Search Engine Optimization). Nhưng thật may mắn, blogger cho chúng ta fix lỗi trên một cách dễ dàng cho những ai dùng template dạng Layout đó là < data:blog.pageName/> tags
    Bây giờ chúng ta tiến hành nhé:
    1. Login vào blogger với tài khoản của bạn
    2. Tiếp đến vào "Layout->Edit HTML"(No Need Expand Widget Templates)
    3. Ctrl + F tìm code sau: < data:blog.pageName/>
    Bình thường nó có dạng 

    <head>
    <b:include data='blog' name='all-head-content'/>
     <title><data:blog.pageTitle/></title>


    Nếu bạn muốn chỉ hiện tiêu đề bài viết thì thay thế đoạn code vừa tìm được với đợn code sau:


    <b:if cond='data:blog.pageType == &quot;index&quot;'>
    <title><data:blog.title/></title>
    <b:else/>
    <title><data:blog.pageName/></title>
    </b:if>

    Nếu bạn muốn hiện cả tiieeu đề bài viết & nhan đề blog thì thay thế đoạn code vừa tìm được với đợn code sau:

    <b:if cond='data:blog.pageType == &quot;index&quot;'>
    <title><data:blog.pageTitle/></title>
    <b:else/>
    <title><data:blog.pageName/> ~ <data:blog.title/></title>
    </b:if>

    Nếu muốn đổi cách hiển thị cho tất cả dạng link trong blogger gồm link search , link lable ....(2 code trên chỉ đổi link bài đăng)

    <!-- seo title -->
    <b:if cond='data:blog.pageType == "index"'>
    <title><data:blog.title/> : Blog title</title>
    <meta content='Blog description' name='Description'/>
    <meta content='kewords, separated, by, commas ' name='Keywords'/>
    <b:else/>
    <b:if cond='data:blog.pageType == "archive"'>
    <title><data:blog.title/> : Blog Title the same as above</title>
    <meta content='Blog description the same as above' name='Description'/>
    <meta content='keywords, the, same, as, above ' name='Keywords'/>
    <b:else/>
    <b:if cond='data:blog.pageType == "item"'><title><data:blog.pageName/> ~ <data:blog.title/></title>
    <meta expr:content='data:blog.pageName' name='Description'/>
    <meta expr:content='data:blog.pageName + data:blog.title +data:blog.pageTitle' name='Keywords'/>
    <b:else/><title><data:blog.pageTitle/></title></b:if>
    </b:if>
    </b:if>
    <!-- /seo title -->

    4. Save template của bạn lại và nhìn lên thanh tiêu đề xem kết quả nhé, chúc thành công

    Twitter Delicious Facebook Digg Stumbleupon Favorites More