Re: Designer Content Proはどうでしょう

2014年7月10日 at 22:15

concrete5のセオリーに従うとこんな感じです

<?php
$th = Loader::helper('text');
$text = $item->title->getText();
$text = $th->wordSafeShortText($text, 32, '...'); // 32は制限する文字数
echo $text;
?>

Re: Designer Content Proはどうでしょう

2014年7月10日 at 22:28
hissy 様
いつもご教示ありがとうございます!