ニュース
// 「何分で読めます」を表示する function countdown( $content ){ if ( !is_single() ) { // 投稿ページにのみ表示する return $content; } $count = round(mb_strlen(strip_tags($content)) / 600) + 1; $header = "
この記事は約 {$count} 分で読めます。
"; return $header.$content; } add_action('the_content', 'countdown');