Skip to content

Instantly share code, notes, and snippets.

@ShenXuGongZi
Created August 23, 2012 06:34
Show Gist options
  • Save ShenXuGongZi/3433444 to your computer and use it in GitHub Desktop.
Save ShenXuGongZi/3433444 to your computer and use it in GitHub Desktop.
<div class="blog_box">
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('featured-blog-listing'); ?></a>
<p><?php $temp_arr_content = explode(" ",substr(strip_tags(get_the_content()),0,430)); $temp_arr_content[count($temp_arr_content)-1] = ""; $display_arr_content = implode(" ",$temp_arr_content); echo $display_arr_content; ?><?php if(strlen(strip_tags(get_the_content())) > 430) echo "[.....]"; ?></p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment