开发者

Limit number of characters and put read more link

开发者 https://www.devze.com 2023-03-12 07:41 出处:网络
I am using in place 开发者_Go百科ckeditor with jquery drag and drop. I want to limit the number of characters to 20 and put the read more link.

I am using in place 开发者_Go百科ckeditor with jquery drag and drop. I want to limit the number of characters to 20 and put the read more link. Can anyone tel me, how can i do this.


Not sure if this will work inside your editor but does limit the characters when displayed on html page on frontend:

<html>
<body>
<?PHP 
$chars = 20;
$desc = substr($ckeditorcontent,0,$chars); 
echo $desc ."...";?><a href="#" title="More info">More</a>
</body>
</html>
0

精彩评论

暂无评论...
验证码 换一张
取 消