ব্লগারে আমরা যারা লেখালেখি করি আমাদের প্রায়ই সমস্যাই পড়তে হয় সকল পৃষ্টাতে পুরো পোষ্ট দেখায় । এটি একটি বিরক্তিকর ব্যাপার নীচের কোড গুলি আপনার ব্লগস্পট এর টেম্পলেট এর html এ সংযুক্ত এবং সংশোধন করুন । দেখবেন আপনার ব্লগ স্পটের পোষ্টগুলোর সারাংশই শুধু দেখা যাবে ।
Step 1 : First of all Edit your blogger template. Make sure its HTML Expanded.
Find this code
</head>
add this code
<script type='text/javascript'>
var thumbnail_mode = "float" ;
summary_noimg = 230;
summary_img = 140;
img_thumb_height = 100;
img_thumb_width = 100;
</script>
<script src='http://blogergadgets.googlecode.com/files/excerpt.js' type='text/javascript'/>
</head>
Offcourse you can edit these parameters.. See below for Customizations.Step 2 : Now Find
<data:post.body/>
Replace it with
<b:if cond='data:blog.pageType == "item"'>
<data:post.body/>
<b:else/>
<div expr:id='"summary" + data:post.id'>
<data:post.body/>
</div>
<script type='text/javascript'>
createSummaryAndThumb("summary<data:post.id/>");
</script>
<span style='padding-top:5px;;float:right;text-align:right;'>
<a expr:href='data:post.url' rel='bookmark'><b>Read more >>
</b></a></span>
</b:if>
You Can change Read More with Continue Reading , [...] , Read Full Post, etc…You ca also Replace “Read More” with an Image. For eg..
Replace Read More in the code with <img src=”http://lh3.ggpht.com/_kTaFrEr_318/SkKGIoU-oPI/AAAAAAAAA9g/5A_nTHvFgiI/readmore_thumb%5B2%5D.gif” align=”right” border=”0″/>
And you are done.. now you should have the post summaries.
Details which can be customized:
1. thumbnail_mode var = “float”;
If you prefer the image on top and the summary below, put “no-float”.
2. summary_noimg = 230;
Place the number of characters in the abstracts that do not contain image.
3. summary_img = 140;
Place the number of characters in the summaries with pictures.
4. img_thumb_height = 100;
Customize the height of the image-thumbnail.
5. img_thumb_width = 100;
Customize the width of the image-thumbnail.
কোন মন্তব্য নেই:
একটি মন্তব্য পোস্ট করুন