Title: WP Word Count
Author: redlettuce
Published: <strong>18.08.2010</strong>
Last modified: 01.04.2023

---

Търсене на разширения

![](https://s.w.org/plugins/geopattern-icon/wp-word-count_6d9aca.svg)

# wp-word-count

 От [redlettuce](https://profiles.wordpress.org/redlettuce/)

 * [Детайли](https://bg.wordpress.org/plugins/wp-word-count/#description)
 * [Оценки](https://bg.wordpress.org/plugins/wp-word-count/#reviews)
 * [Разработка](https://bg.wordpress.org/plugins/wp-word-count/#developers)

 [Поддръжка](https://wordpress.org/support/plugin/wp-word-count/)

## Описание

This plugin has been closed as of 15.06.2024 and is not available for download. 
Причина: Проблем със сигурността.

## Отзиви

![](https://secure.gravatar.com/avatar/6748096252a4aafe3f38ecb5bd2d987759c693d4ba2e235431513e16a94e3037?
s=60&d=retro&r=g)

### 󠀁[Found a Better Way](https://wordpress.org/support/topic/found-a-better-way/)󠁿

 [JJNW](https://profiles.wordpress.org/jjnw/) 27.12.2023

This plugin is a bit over the top for my needs. I just want a little box to display
the number of words in the post (under all the other little boxes on the right side
that has Revisions, Tags, Categories, underneath those). Placed this in my functions.
php and it does the trick. /* START word count post */ function add_word_count_meta_box(){
add_meta_box(‘word_count_meta_box’, ‘Word Count’, ‘word_count_callback’, ‘post’,‘
side’); } function word_count_callback($post) { // We’ll use JavaScript to update
this live echo ‘<div id=“word-count-wrapper“>Word Count: <span id=“word-count“>0
</span></div>’; ?> <script type=“text/javascript“> jQuery(document).ready(function(
$) { var updateWordCount = function() { var content; if (window.tinymce) { var editor
= tinymce.get(‘content’); if (editor && editor instanceof tinymce.Editor) { content
= editor.getContent({ format: ‘text’ }); } else { content = $(‘#content’).val();}}
else { content = $(‘#content’).val(); } var wordCount = content.split(/\s+/).filter(
function(word) { return word.length > 0; }).length; $(‘#word-count’).text(wordCount);};//
For classic editor $(‘#content’).on(‘input’, updateWordCount); // For block editor
if (window.wp && wp.data && wp.data.subscribe) { var checkForWordCountUpdate = function(){
var content = wp.data.select(‘core/editor’).getEditedPostContent(); var wordCount
= content.split(/\s+/).filter(function(word) { return word.length > 0; }).length;
$(‘#word-count’).text(wordCount); }; wp.data.subscribe(checkForWordCountUpdate);}//
Initial count on page load updateWordCount(); }); </script> <?php } add_action(‘
add_meta_boxes’, ‘add_word_count_meta_box’); /* END word count post */ The code 
provided for the WordPress word count functionality defines a word as any sequence
of characters separated by whitespace. Specifically, this is how the word count 
is calculated: Splitting the Text: The split(/\s+/) function in JavaScript is used
to split the content of the post into an array of substrings using a regular expression.
The \s+ pattern matches any sequence of whitespace characters (spaces, tabs, newlines,
etc.). Filtering Non-Empty Words: The filter(function(word) { return word.length
> 0; }) part of the code filters out any empty strings from the array. This is important
because the split function can create empty strings if there are spaces at the beginning
or end of the text, or multiple spaces in a row. Counting Words: The length property
of the resulting array (after splitting and filtering) gives the number of words.
Each element of the array represents a word. With this code, a word is any non-empty
string of characters that is separated from other words by one or more whitespace
characters. This is a common and general way to count words, but it does have limitations.
For example, it doesn’t account for words joined by hyphens (like „long-term“) or
apostrophes (like „don’t“), which are typically counted as single words. Additionally,
numbers or strings of punctuation without spaces would also be counted as words.
This approach is suitable for a general word count feature, but for more advanced
or specific word counting rules, the code would need to be adjusted accordingly.

![](https://secure.gravatar.com/avatar/4aa54f70085745741cdfbcfb74d88f8e9c3925a75c6a5c554160d5105866ddcc?
s=60&d=retro&r=g)

### 󠀁[don’t waste your time](https://wordpress.org/support/topic/dont-waste-your-time-120/)󠁿

 [dunavista](https://profiles.wordpress.org/dunavista/) 11.11.2023

Not good at all, no functionality at all, and a total waste of time. you are better
off using the opensource WordPress word count providedof course, you might get the
bells and whistles if you pay, but I would rather use my own FREE code snippets

![](https://secure.gravatar.com/avatar/85aa3529dcb4e6562582713f003c927026d077bbc7121a07c75e6d33c78744ac?
s=60&d=retro&r=g)

### 󠀁[unusable](https://wordpress.org/support/topic/unusable-42/)󠁿

 [alexa69](https://profiles.wordpress.org/alexa69/) 23.10.2019 1 reply

not all words count. unusable

![](https://secure.gravatar.com/avatar/b0942f3e90b062c407d89467713478422076cd43fddb9ef80288d6a43a8577e9?
s=60&d=retro&r=g)

### 󠀁[Almost Perfect, But not suitable for Chinese users](https://wordpress.org/support/topic/almost-perfect-but-not-suitable-for-chinese-users/)󠁿

 [Bill Chen](https://profiles.wordpress.org/billchen2000/) 25.02.2019

Hi, I’m so impressed with this amazing plugin. However, for Chinese bloggers we 
don’t separate our words with spaces. What we call the word number usually means
the character number. So could you please add a feature that can calculate the character
numbers (ignore space and punctuation) of all my post? Much thx！

![](https://secure.gravatar.com/avatar/6773458ccc57eec21ce50b8c78080ad18d3275abf47594e192f09ebb5c740240?
s=60&d=retro&r=g)

### 󠀁[Time saver](https://wordpress.org/support/topic/time-saver-207/)󠁿

 [rmizrah1](https://profiles.wordpress.org/rmizrah1/) 26.09.2018

Thank you!

![](https://secure.gravatar.com/avatar/5ae431811d1ab09e33d62f0b8517f1dc7b4af91a6534e0ec4e51d763b3d224bf?
s=60&d=retro&r=g)

### 󠀁[It doesn’t support page builders](https://wordpress.org/support/topic/it-doesnt-support-page-builders/)󠁿

 [Vincent Poirier](https://profiles.wordpress.org/magikweb/) 05.02.2018

We use CornerStone / Pro from Themeco and it seems like the process is having a 
hard time finding out what is a word and what is not. WP Word Count’s result is 
~1500 words for a ~4500 words page. We manually compared to make sure.

 [ Прочетете всички 13 отзива ](https://wordpress.org/support/plugin/wp-word-count/reviews/)

## Сътрудници и разработчици

“WP Word Count” е софтуер с отворен код. Към разширението са допринесли следните
хора:

Сътрудници

 *   [ redlettuce ](https://profiles.wordpress.org/redlettuce/)

“WP Word Count” е преведено на 2 езика. Благодарности на [преводачите](https://translate.wordpress.org/projects/wp-plugins/wp-word-count/contributors)
за техния принос.

[Превеждане на “WP Word Count” на вашия език.](https://translate.wordpress.org/projects/wp-plugins/wp-word-count)

### Имате интерес към разработване?

[Преглеждане на кода](https://plugins.trac.wordpress.org/browser/wp-word-count/),
разглеждане на [SVN хранилище](https://plugins.svn.wordpress.org/wp-word-count/),
или абонамент към [програмната история (log)](https://plugins.trac.wordpress.org/log/wp-word-count/)
чрез [RSS](https://plugins.trac.wordpress.org/log/wp-word-count/?limit=100&mode=stop_on_copy&format=rss).

## Мета

 *  Version **3.2.4**
 *  Last updated **Преди 3 години **
 *  Active installations **Липсва**
 *  WordPress version ** 4.0 или по-висока **
 *  Tested up to **6.2.0**
 *  Languages
 * [Chinese (Taiwan)](https://tw.wordpress.org/plugins/wp-word-count/), [Dutch](https://nl.wordpress.org/plugins/wp-word-count/)
   и [English (US)](https://wordpress.org/plugins/wp-word-count/).
 *  [Преведете на вашия език](https://translate.wordpress.org/projects/wp-plugins/wp-word-count)
 *  [Разширен изглед](https://bg.wordpress.org/plugins/wp-word-count/advanced/)