テーマファイル側で、記事タイトルの文字数を制限する

Ads

Code

<?php if (strlen($post->post_title) > 30) {
echo mb_substr(the_title($before = '', $after = '', FALSE), 0, 30) . '...'; } else {
the_title();
} ?>
/*上記は30文字以降「...」で省略される*/
view raw gistfile1.aw hosted with ❤ by GitHub

Screen shot

Note

Description テーマファイル側で記事タイトルの出力される文字数を設定し、「…」を加える
WordPress Ver. 3.3.1
Via How to limit character on title