going out of my realm now can try something like this
in functions.php
then changePHP Code:function ShortenText($str, $length) {
$str = strip_tags($str);
$str = explode(" ", $str);
return implode(" " , array_slice($str, 0, $length));
}
to something like thisPHP Code:<?php the_title(); ?>
a php guru may see a error in this and help kinda worked but not perfect on my test site.PHP Code:<?php echo ShortenText(get_the_title(), 2); ?>


LinkBack URL
About LinkBacks


Check out the
Thanks a bunch.

Bookmarks