Titles
-
In lines:
if (isset($_REQUEST[‘cid’]))
{
$mycomment=get_comment($_REQUEST[‘cid’]);
$mypost=get_post($mycomment->comment_post_ID);
return $this->GetExcerpt($mycomment->comment_content, 10);
}
else return $title;I want to swap “10” words of 50 letters and remove “.” or “,” and convert to lowercase applying filters:
substr and strtolower in php…
How to?
The topic ‘Titles’ is closed to new replies.