8
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【baserCMS:初心者向け】コンテンツの文字制限

Posted at

#コンテンツ出力の文字制限

管理画面で登録したコンテンツ(本文)をトップの新着リストなどで表示する際に文字制限したい時があると思います。
そんな時はこのタグを使って見てください。

###記事へのリンクなし (36文字以上を「…」で表示)

<?php echo mb_strimwidth($this->Blog->getPostTitle($post, false), 0, 36, '…', 'utf-8') ?> 

###記事へのリンクあり (36文字以上を「…」で表示)

<?php echo $this->Blog->getPostLink($post, mb_strimwidth($this->Blog->getPostTitle($post, false), 0, 36, '…', 'utf-8')) ?> 
8
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?