WordPress文字数量统计
建站教程 阅读WordPress文字数量统计,你写的文章时根本都不知道自己写了多少个字,所以要使用以下的代码实现统计文字数量功能,使用方法功能把一窜代码丢进模板函数 (functions.php)里就行了!
把以下全部代码丢进模板函数 (functions.php)!
/*-----------------------------------------------------------------------------------*/ /* WordPress文字数量统计 /*-----------------------------------------------------------------------------------*/ function count_words ($text) { global $post; if ( '' == $text ) { $text = $post->post_content; if (mb_strlen($output, 'UTF-8') < mb_strlen($text, 'UTF-8')) $output .= '共 ' . mb_strlen(preg_replace('/\s/','',html_entity_decode(strip_tags($post->post_content))),'UTF-8') . ' 字。'; return $output; } }
调用方式
<?php echo count_words ($text); ?>
本文链接:https://niujc.com/com/1372669.html
晚上好!当前时间为
目前距离2023年春节还有
TOP