View Single Post
Old 06-03-2013, 01:06 PM  
RevSand
Confirmed User
 
RevSand's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: Porn Valley
Posts: 8,151
Ahh may have found it..

functions.php

Quote:
<?php
if ( function_exists('register_sidebars') )
register_sidebars(2);


function improved_trim_excerpt($text) {
global $post;
if ( "" == $text ) {
$text = get_the_content("");
$text = apply_filters('the_content', $text);
$text = str_replace(']]>', ']]&gt;', $text);
$text = preg_replace('@<script[^>]*?>.*?</script>@si', "", $text);
$text = strip_tags($text, '<p>');
$excerpt_length = 80;
$words = explode(' ', $text, $excerpt_length + 1);
if (count($words)> $excerpt_length) {
array_pop($words);
array_push($words, '[...]');
$text = implode(' ', $words);
}
}
return $text;
}


?>
Seem like it to others? and what do I do with it??
__________________


BadBitchesGoodWeed


Hire me for all your video shooting needs!!
Skype = RevSandx
RevSand is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote