Expandable post summaries using javascript..


Your blog’s main page usually shows the entire content of each post. If your posts are usually more than 2 paragraphs, then your visitor will find it difficult to quickly find the topic of interest to him because he needs to scroll down a lot.

From this you will display only part of the post and if user wants to read full post , he clicks on the Read more! link and he will be redirected to full text of that post.This is useful when your articles are long.

Note : You should enable Post pages in Settings–>Archiving in order to make this feature work.

1.Go to Layout—>Edit Html

2.Enable Expand Widget Templates

3.Add following Javascript Code immediately above </head> tag

<script type=’text/javascript’>

function truncate_body (postid) {

var id = document.getElementById(postid);

var postbody = id.innerHTML;

var len = postbody.toLowerCase().indexOf(&quot;&lt;br&quot;);

if(len&gt;0)

postbody = postbody.substring(0, len);

id.innerHTML = &quot;<p>&quot; + postbody + &quot;</p>&quot;;

id.style.display=&quot;block&quot;;

}

</script>

4.Search For <p><data:post.body/></p>  And Replace it with following Code:

<b:if cond=’data:blog.pageType != “item”‘>

<div expr:id=’”postid_” + data:post.id’>

<data:post.body/>

</div>

<script type=’text/javascript’> truncate_body(&quot;postid_<data:post.id/>&quot;); </script>

<p>

<a class=’read_more’ expr:href=’data:post.url’><b>Read More…</b></a>

</p>

<b:else/>

<p><data:post.body/></p>

</b:if>

Featured Items - Top Selling WordPress Themes From Themeforest

Want to use one of the top selling WordPress theme for your next project?   Here is the list of Premium WordPress items from Blog, Magazine, Creative, Retail, Technology, Entertainment, BuddyPress, eCommerce and Nonprofit categories.
FIND OUT MORE

Featured Items - 200+ Popular HTML Email and Newsletter Templates for Effective Marketing

Do you want to market your products effectively ? Do you want to send newsletter to your customer in the way that you want ? Do you want full control over the email design ? There are 200+ great collection of E-mail and Newsletter HTML templates from Themeforest. Get into site directly and search for the suitable template that boost your sales and conversion rate.
FIND OUT MORE

Featured Items - 70+ Premium elegantThemes for Just $39

Unlimited access to 70+ elegantThemes - Premium WordPress themes for only $39. Feature includes - ePanel Theme Options, Shortcodes, Page Templates and Easy Localization. Power your website with elegant themes today!
FIND OUT MORE

Featured Items - Ultimate Collection of Responsive WordPress Themes

Responsive WordPress themes enables stunning look and feel of your website in any device - from mobile devices to widescreen monitors. These collections are sorted by user rating and number of sales.
FIND OUT MORE

Featured Items - Business Class Hosting From Inmotion at Just $5.95

Inmotion is a No.1 Fast, Reliable and Affordable Hosting provider. Inmotion has earned 3 out of 3 rating from CNET to become a CNET Certified Service Provider. LIMITED TIME SPECIAL OFFER! - Get $1 Off / Month on your initial purchase
FIND OUT MORE
  • Mehkaus

    Thank you SO much of this code! Having tried a couple of other codes (which was meant to do the same trick but didn’t) you’ve saved my day!