How to displey only first 10 characters of Post title?
Thanks
How to displey only first 10 characters of Post title?
Thanks
Try this:
<?php
$tit = the_title('','',FALSE);
echo substr($tit, 0, 10);
?>Thanks, it working, not perfect but working
This topic has been closed to new replies.