Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Re: [sangiro] Shorten the Title

Quote Reply
Re: [sangiro] Shorten the Title In reply to
Here's the short_description global you may be able to modify to suit the title.

sub {
my $tags = shift;
my $desc = $tags->{Description} or return "No description on this template";
length $desc <100 and return $desc;
my $short = substr ($desc, 0, 100);
$short =~ s/\s\S+?$//;
$short .= " ...";
return $short;
}

Regards

minesite
Subject Author Views Date
Thread Shorten the Title sangiro 1844 Jul 2, 2004, 4:20 AM
Thread Re: [sangiro] Shorten the Title
minesite 1760 Jul 2, 2004, 5:16 AM
Post Re: [minesite] Shorten the Title
Andy 1755 Jul 2, 2004, 6:40 AM