■実験場■
「Reading time」を設置しました。記事を読むのに必要な時間をタイトルの下に付記することによって「記事のおおよその文章量を把握できる」ようにしたもの
post_content; // wordpress users only
$word = mb_strlen(strip_tags($mycontent));
$m = floor($word / 400);
if ($m == 0) {
$est = '1分未満';
} else {
$est = '約' . $m . '分';
}
?>

この記事を読むのに必要な時間


******************************

「Reading time」
記事を読むのに必要な時間をタイトルの下に付記することによって「記事のおおよその文章量を把握できる」ようにしたもの
post_content; // wordpress users only
$word = str_word_count(strip_tags($mycontent));
$m = floor($word / 200);
$s = floor($word % 200 / (200 / 60));
$est = $m . ' minute' . ($m == 1 ? '' : 's') . ', ' . $s . ' second' . ($s == 1 ? '' : 's');
?>

Estimated reading time:


******************************

TweetMeme Button



******************************