'; }else{ //return URL return $thumb_url; } } function templatelite_excerpt($displaylink='',$excerpt_more="...",$more_left='',$more_right=''){ global $tpinfo; $text= has_excerpt() ? get_the_excerpt() : get_the_content(''); $text = strip_shortcodes( $text ); $text = apply_filters('the_content', $text); $text = str_replace(']]>', ']]>', $text); $text = strip_tags($text,""); $excerpt_length = $tpinfo[$tpinfo['tb_prefix'].'_postexcerpt_words']; if(!empty($displaylink)){ $excerpt_more=$more_left.''.$excerpt_more.''.$more_right; }else{ $excerpt_more=$more_left.$excerpt_more.$more_right; } $words = explode(' ', $text, $excerpt_length + 1); if (count($words) > $excerpt_length) { array_pop($words); $text = implode(' ', $words); $text = $text . $excerpt_more; } echo $text; } ?>