Cách cài đặt script
Trước tiên, các bạn vào phần chỉnh sửa template, chọn kiểu chỉnh sửa HTML, và đánh dấu vào ô Expand Widget Templates. Nhớ sao lưu trước khi thực hiện. Tốt hơn hết là bạn nên download template về máy tính và chỉnh sửa ở file này.
Tìm đến thẻ </head> và chèn đoạn mã sau vào ngay trước đó:
Sau đó, tìm đến thẻ:
Và thay thế bắng đoạn mã sau:
Dựa theo bài viết của Hontap. Mình thay thế vào bài hướng dẫn là code có sẵn trong skin blog mình! Cảm ơn bài viết của HonTap ! chúc vui anh em blog!
http://hontap.blogspot.com/2009/06/lam-readmore-trong-blogger-giong.html
Trước tiên, các bạn vào phần chỉnh sửa template, chọn kiểu chỉnh sửa HTML, và đánh dấu vào ô Expand Widget Templates. Nhớ sao lưu trước khi thực hiện. Tốt hơn hết là bạn nên download template về máy tính và chỉnh sửa ở file này.
Tìm đến thẻ </head> và chèn đoạn mã sau vào ngay trước đó:
<script type='text/javascript'>
var thumbnail_mode = "no-float" ;
summary_noimg = 530;
summary_img = 440;
img_thumb_height = 119;
img_thumb_width = 119;
</script>
<script type='text/javascript'><!--//--><![CDATA[//><!--
function removeHtmlTag(strx,chop){
if(strx.indexOf("<")!=-1)
{
var s = strx.split("<");
for(var i=0;i<s.length;i++){
if(s[i].indexOf(">")!=-1){
s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length);
}
}
strx = s.join("");
}
chop = (chop < strx.length-1) ? chop : strx.length-2;
while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++;
strx = strx.substring(0,chop-1);
return strx+'...';
}
function createSummaryAndThumb(pID){
var div = document.getElementById(pID);
var imgtag = "";
var img = div.getElementsByTagName("img");
var summ = summary_noimg;
if(img.length>=1) {
imgtag = '<span style="float: left; padding:0px 10px 5px 0px;"><img src="'+img[0].src+'" width="'+img_thumb_width+'px" height="'+img_thumb_height+'px"/></span>';
summ = summary_img;
}
var summary = imgtag + '<div>' + removeHtmlTag(div.innerHTML,summ) + '</div>';
div.innerHTML = summary;
}
//--><!]]></script>
Sau đó, tìm đến thẻ:
<data:post.body/>
Và thay thế bắng đoạn mã sau:
<b:if cond='data:blog.pageType != "item"'>
<span expr:id='"p" + data:post.id'><data:post.body/></span>
<script type='text/javascript'>createSummaryAndThumb("p<data:post.id/>");</script>
<a expr:href='data:post.url' title='Đọc tiếp'>Đọc tiếp →</a>
<b:else/>
<data:post.body/>
</b:if>
Dựa theo bài viết của Hontap. Mình thay thế vào bài hướng dẫn là code có sẵn trong skin blog mình! Cảm ơn bài viết của HonTap ! chúc vui anh em blog!
http://hontap.blogspot.com/2009/06/lam-readmore-trong-blogger-giong.html