Limiting the amount of characters in a string

summ34chic

New Member
I'm using the following to limit the amount of characters in a string\[code\]<?php $eventtitle1 = get_the_title();$eventtitle1_str = strip_tags($eventtitle1, '');echo substr($eventtitle1_str,0,30) . "
 
Back
Top