Truyện Cười BlogTaPhiet KC

Chat Box


--------------:Search

Chủ Nhật, 4 tháng 10, 2009

[Thủ Thuật] Làm Readmore trong Blogger giống WordPress

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 đó:
<script type='text/javascript'>

var thumbnail_mode = &quot;no-float&quot; ;
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 != &quot;item&quot;'>
<span expr:id='&quot;p&quot; + data:post.id'><data:post.body/></span>
<script type='text/javascript'>createSummaryAndThumb(&quot;p<data:post.id/>&quot;);</script>
<a expr:href='data:post.url' title='Đọc tiếp'>Đọc tiếp &rarr;</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

[Click here to Read More]

[Thủ Thuật] Làm Readmore trong Blogger giống WordPress

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 đó:
<script type='text/javascript'>

var thumbnail_mode = &quot;no-float&quot; ;
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 != &quot;item&quot;'>
<span expr:id='&quot;p&quot; + data:post.id'><data:post.body/></span>
<script type='text/javascript'>createSummaryAndThumb(&quot;p<data:post.id/>&quot;);</script>
<a expr:href='data:post.url' title='Đọc tiếp'>Đọc tiếp &rarr;</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

[Click here to Read More]
Top