HELP – how to shorten the_title
-
hello,
How can i shorten my title <?php the_title(); ?> using this php script :<?php function shorten_text($text, $length) { $shortened_text = substr($text, 0, $length); $shortened_text .= '…'; return $shortened_text; } $title = 'Your very long title blah blah blah'; $shortened_title = shorten_text($title, 15); print $shortened_title; ?>
Thanks
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘HELP – how to shorten the_title’ is closed to new replies.