function the_content_limit($max_char, $more_link_text = '', $stripteaser = 0, $more_file = '') {$content = get_the_content($more_link_text, $stripteaser, $more_file);$content = apply_******s('the_content', $content);$content = str_replace(']=]=>', ']]>', $content);$content = strip_tags($content,''); if (strlen($_GET['p']) > 0) {
}else if ((strlen($content)>$max_char) && ($espacio = strpos($content, " ", $max_char ))) {$content = mb_substr($content, -160, $espacio);$content = $content;echo "<p>";echo $content;echo "";echo " <a href='";the_permalink();echo "'>".$more_link_text."</a>";echo "</p>";}}