wordpressのsingleページに記事の文字数を表示する方法
- 公開日:
- 更新日:
- 文字数:257文字
wordpressの記事に文字数を表示させたいがあまりやり方がなかったので紹介します。
管理画面の投稿には、文字数の表記がわかりますが、singleページではないので独自で作ります。
【single.php】
<?php
//文字数取得
$wordcount = mb_strlen(strip_tags(get_post_field('post_content', $post_id)));
//出力
echo $wordcount
?>