Tuesday, May 19, 2015

Sitemap - Thủ thuật tạo sơ đồ trang cho BLogger Version 3

Sitemap - Thủ thuật tạo sơ đồ trang cho BLogger Version 3

Sau khi nghiên cứu vấn đề này, mình đã nghĩ ra một thủ thuật blogger với ý tưởng vận dụng cách liệt kê các bài viết của một nhãn, một script rất phổ biến trên cộng đồngBlogger, để tạo ra Sitemap, kết hợp CSS tạo hai cột, vừa tiết kiệm không gian web, vừa giúp người dùng dễ dàng tùy biến theo ý thích, chúc các bạn thiết kế web và SEO thật là tốt của mình thật đẹp.


Cách tạo một site map đẹp và có tốc độ load cực nhanh cho blogspot
1- Đăng nhập vào Blog 2- Vào Đăng bài mới (Posting) để tạo một bài viết có tiêu đề làSitemap (để trống phần nội dung), xuất bản bài viết để lấy URL. 
3- Vào Thiết Kế (Design)
4- Vào chỉnh sửa HTML (Edit HTML).
5- Đặt đoạn code sau đây vào trước thẻ </head>.


<b:if cond='data:blog.url == &quot;URL_trang_Sitemap&quot;'>
<script type='text/javascript'>
//<![CDATA[
function allpostslist(json) {
document.write('<ul>');
for (var i = 0; i < json.feed.entry.length; i++)
{
for (var j = 0; j < json.feed.entry[i].link.length; j++) {
if (json.feed.entry[i].link[j].rel == 'alternate') {
break;
}
}
var entryUrl = "'" + json.feed.entry[i].link[j].href + "'";
var entryTitle = json.feed.entry[i].title.$t;
var item = "<li>" + "<a href="+ entryUrl + '" target="_blank">' + entryTitle + "</a> </li>";
document.write(item);
}
document.write('</ul>');
}
//]]>
</script>
<style type='text/css'>
#sitemap{width:900px;margin:0;padding-bottom:15px;background:#ffffff;float:left;}
#sitemap ul {background:#FFFAF0;max-height: 250px !important; overflow:auto; padding:5px 10px;margin:0;list-style-type:none}#sitemap ul:hover {background:#FDF5E6}
#sitemap ul li {list-style: disc url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhamo-f0lu-owpWvm6TkFIwAyOb-P8Ra8bPhBmDz-91Lhwq2377N70f1H-wi2qaqGuuOVTm2zV6eS15V6L3iwhAHrULhi_oK5PnPh097mKXiXvwDm8j89J-s6C6Ei-tAn7TznJk0VPPOQub/s1600/iconslist-namkna-blogspot-com.gif) inside; vertical-align: top; padding-left:10px;margin: 0;}
#sitemap ul li:hover {list-style: disc url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjhsbu0OcVWgnvca7BmjwrO6HLSr8wfcnkU3-dCYSNyIp6Cq6BgDJYAi72Ajo0YQY6_T9XT2lTe9n3wYwGIDBMu3q_Sln91bgRSNoyR4VLuSEjwP3BNvTNq6B6kBu1c7tGXDt26rbJeUJ_S/h120/iconslisthover-namkna-blogspot-com.png) inside; vertical-align: top;padding-left:10px;margin: 0;}
.sm-left{float:left;width:45%;margin:0 20px 0px 20px;font-size:14px;tex-align:justify}
.sm-right{float:right;width:45%;;margin:0 20px 0px 20px;font-size:14px;tex-align:justify}
p.smtitle {border-bottom:1px dotted #789;clear:both;color:
#2554C7;font-family:Century Gothic;font-size:25px;padding:10px 50px 5px
0;text-align:right;text-shadow:2px 2px 1px #789;text-transform:lowercase;}
#content-wrapper{display:none}
</style>
</b:if>
  • Bạn chú ý phần màu xanh mình đã thêm vào để làm cho site map đẹp hơn với các nhãn có nhiều bài đăng sẽ xuất hiện thanh cuộn. 

  • màu đỏ là hiệu ứng nền khi chưa dê chuột.
  • màu cam là hiệu ứng khi dê chuột vào. 
  • Các bạn có thể thay chúng thành mã màu của bạn.
  • Chú ý thuộc tính display:none để ẩn đi một số ID và CLASS cần thiết. Tải 2 file icon về áp dụng cho blogspot của bạn, tránh dùng chung file: iconslist.gif (file ảnh khi chưa dê chuột vào tiêu đề bài viết) và iconslisthover.png (file ảnh khi dê chuột vào tiêu đề bài viết) .
6- Bấm Lưu Mẫu lại.

7- Tìm dòng:

<div id='content-wrapper'>
Và đặt trước nó bằng đoạn code bên dưới.
<b:if cond='data:blog.url == &quot;URL_trang_Sitemap&quot;'>
<div id='sitemap'>
<div class='sm-left'><p class='smtitle'><a href='/search/label/Nhãn 1?max-results=10'>Tiêu đề Nhãn 1</a></p>
<script src='/feeds/posts/summary/-/Nhãn 1?max-results=500&amp;alt=json-in-script&amp;callback=allpostslist'/>
<p class='smtitle'><a href='/search/label/Nhãn 2?max-results=10'>Tiêu đề Nhãn 2</a></p>
<script src='/feeds/posts/summary/-/Nhãn 2?max-results=500&amp;alt=json-in-script&amp;callback=allpostslist'/>
<p class='smtitle'><a href='/search/label/Nhãn 3?max-results=10'>Tiêu đề Nhãn 3</a></p>
<script src='/feeds/posts/summary/-/Nhãn 3?max-results=500&amp;alt=json-in-script&amp;callback=allpostslist'/>
</div>
<div class='sm-right'><p class='smtitle'><a href='/search/label/Nhãn A?max-results=10'>Tiêu đề Nhãn A</a></p>
<script src='/feeds/posts/summary/-/Nhãn A?max-results=500&amp;alt=json-in-script&amp;callback=allpostslist'/>
<p class='smtitle'><a href='/search/label/Nhãn B?max-results=10'>Tiêu đề Nhãn B</a></p>
<script src='/feeds/posts/summary/-/Nhãn B?max-results=500&amp;alt=json-in-script&amp;callback=allpostslist'/>
<p class='smtitle'><a href='/search/label/Nhãn C?max-results=10'>Tiêu đề Nhãn C</a></p>
<script src='/feeds/posts/summary/-/Nhãn C?max-results=500&amp;alt=json-in-script&amp;callback=allpostslist'/>
<p
style="font-family:verdana,arial,sans-serif;font-size:10px;"><a
href="http://namkna.blogspot.com/2011/08/tao-sitemap-ep-cho-blogspot.html"
target="_blank">Add to your blogspot ?</a></p>
</div>
</div>
<div style='clear: both;'/>
</b:if>
  • Phần nằm sau thẻ <div class='sm-left'> là cột chứa các nhãn bên trái,
  • Phần nằm sau thẻ <div class='sm-right'> là cột chứa các nhãn bên phải.
  • Tùy theo số lượng nhãn và số lượng bài viết trên blogspot mà bạn phân phối và bố trí thêm bớt các nhãn sao cho cân đối, theo định dạng như trên.
  • Thay các phần Nhãn 1,2,3 và Nhãn A,B,C thành tên các nhãn.
  • Thay Tiêu đề Nhãn 1,2,3 và Tiêu đề Nhãn A,B,C thành phần mô tả của các nhãn tương tứng.

Lưu ý: Blog của bạn phải đăng ký nguồn cấp dữ liệu của feedbune để lấy dữ liệu nha. Nếu chưa đăng ký thì xem bài này: Cách đăng ký và sử dụng FeedBurner cho Blogspot
8- Bấm Lưu Mẫu lại. 

Unknown

About Blog

Luôn luôn chia sẻ, tìm tòi và học hỏi , chia sẻ cho bạn cũng như cho tôi

Subscribe to this Blog via Email :