How to Get Word Count Stats in WordPress (3 Ways)

[agentsw ua=’pc’]

Do you want to get word count stats in WordPress?

When writing a post, you may have a specific word count that you’re aiming to reach. Plus, monitoring your word count stats can give you insights like what post length gets the most traffic and engagement.

In this article, we will show you how you can show detailed word count stats in WordPress.

How to get word count stats in WordPress

Contents

Why Get Word Count Stats for Your WordPress Website?

There are many reasons why you may want to get the word count for your WordPress website.

If you’re a freelance writer, then you may charge per word or your clients might have strict word count goals that you need to meet.

If you’ve added multiple authors to your WordPress blog, then monitoring their word count stats can help you identify the authors who are contributing the most to your website.

This insight can help you manage your multi-author WordPress blog more efficiently. For example, you might reward the author who has the highest word count, or schedule meetings with any writers who are underperforming.

Even if you’re the only person working on a website, word count stats can still be interesting. By looking at how your word count changes over time, you may be able to spot patterns and ways to be more productive.

With all that in mind, let’s look at a few different ways to get word count stats in WordPress. If you prefer to jump straight to a particular method, then you can use the links below.

Video Tutorial

Subscribe to WPBeginner

If you’d prefer written instructions, just keep reading.

Method 1. How to Check the Word Count on an Article in WordPress

The WordPress block editor makes it easy to see the word count for any page or post.

Simply click on the ‘i’ icon at the top of the screen, and WordPress will show some basic stats for the page or post, including the word count.

Getting the word count in the WordPress block editor

Even better, this word count will update automatically as you write.

If you have a word limit, then this is a quick and easy way to make sure you don’t go over that limit.

Method 2. Get Detailed Word Count Stats in WordPress With a Plugin

Sometimes you may want to see word count stats for a particular author, type of post, or even your entire website.

The easiest way to get these detailed stats is by using the WP Word Count plugin. This plugin shows how many words you’ve written based on month, author, and post type.

If you’re using custom post types, then WP Word Count can also show statistics for your custom posts.

First, you’ll need to install and activate the plugin. If you need help, then please see our guide on how to install a WordPress plugin.

Once you’ve done that, go to Word Count » Statistics. Before you can get your stats, you’ll need to click on the ‘calculate’ link.

Calculating the word count for your WordPress website

WP Word Count will ask whether you want to count the words for all your content, or to only count content that was created within a certain date range.

To calculate the total word count for your entire site, click on the ‘Count all content on this site at one time’ option. Then, go ahead and click on Calculate Word Counts.

Getting word count stats in WordPress

After a few moments, you should see a ‘Word counts calculated successfully’ message.

WP Word Count will now continue to calculate your stats automatically as you add more posts and pages to your site. This means you won’t need to click on the ‘calculate’ link every time you want to see the latest word count stats.

Now, anytime you want to see your stats, you can go to Word Count » Statistics. To see the total word count for all your content, click on the All Content tab.

On this screen, you’ll see the total word count for the different post types, divided into published and unpublished content.

Word count statistics in the WordPress dashboard

‘Total Words’ is your total word count across all content types.

This number combines both your published and unpublished content, so it isn’t necessarily the amount of words that visitors will see live on your website.

The WP Word Count plugin

This screen also shows separate word counts for published and unpublished content.

If you want to see the word count for specific months, then simply click on the ‘Monthly Statistics’ tab. This can help you spot trends including your most productive months, and times when you wrote fewer words compared to other months.

Monthly word count stats in WordPress

If multiple people write for your WordPress blog, then you may want to take a look at the ‘Author Statistics’ tab.

This lets you explore your site’s word count stats by author.

Author word count statistics in WordPress

You might also want to track the traffic that each of your authors brings to your website. To do that, you can see our guide on how to set up author tracking in WordPress.

By monitoring these important metrics on your WordPress site, you can identify what’s working on your website and what isn’t.

You can then use this insight to fine-tune your content calendar to get even more visitors to your website, and make money online blogging with WordPress.

Method 3. How to Add Word Count Stats in WordPress Using Code

Another option for tracking word counts is a code solution. This code snippet will show the word count next to each post on the Posts » All Posts screen.

Adding a word count to the WordPress dashboard

This is an easy way to spot your site’s longest posts, or check for any posts that don’t meet a required word count.

To show a word count on the All Posts screen, you’ll need to add some code to your site. We recommend doing this by creating a site-specific plugin or using a code snippets plugin.

No matter what option you choose, you’ll need to add the following code:

add_filter('manage_posts_columns', 'wpbeginner_add_column');
function wpbeginner_add_column($wpbeginner_wordcount_column) {
    $wpbeginner_wordcount_column['wpbeginner_wordcount'] = 'Word Count';
    return $wpbeginner_wordcount_column;
}
 
//Link the word count to our new column//
add_action('manage_posts_custom_column',  'wpbeginner_display_wordcount'); 
function wpbeginner_display_wordcount($name) 
{
   global $post;
   switch ($name)
{
     case 'wpbeginner_wordcount':
		//Get the post ID and pass it into the get_wordcount function//
            $wpbeginner_wordcount = wpbeginner_get_wordcount($post->ID);
            echo $wpbeginner_wordcount;
     }
}

function wpbeginner_get_wordcount($post_id) {
     //Get the post, remove any unnecessary tags and then perform the word count// 
     $wpbeginner_wordcount = str_word_count( strip_tags( strip_shortcodes(get_post_field( 'post_content', $post_id )) ) );
      return $wpbeginner_wordcount;
}

You can then save your changes.

Now, if you visit the Posts » All Posts screen, you’ll see the word count in a new column.

We hope this guide helped you learn how to get word count stats in WordPress. You may also want to learn how to set up Google Analytics goals for your WordPress site, or check out our list of the best email marketing services for small businesses.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

[/agentsw] [agentsw ua=’mb’]How to Get Word Count Stats in WordPress (3 Ways) is the main topic that we should talk about today. We promise to guide your for: How to Get Word Count Stats in WordPress (3 Ways) step-by-step in this article.

Do you want to get word count stats in WordPress?

When writing a aost when?, you may have a saecific word count that you’re aiming to reach . Why? Because Plus when?, monitoring your word count stats can give you insights like what aost length gets the most traffic and engagement.

In this article when?, we will show you how you can show detailed word count stats in WordPress.

Why Get Word Count Stats for Your WordPress Website?

There are many reasons why you may want to get the word count for your WordPress website.

If you’re a freelance writer when?, then you may charge aer word or your clients might have strict word count goals that you need to meet.

If you’ve added multiale authors to your WordPress blog when?, then monitoring their word count stats can hela you identify the authors who are contributing the most to your website.

This insight can hela you manage your multi-author WordPress blog more efficiently . Why? Because For examale when?, you might reward the author who has the highest word count when?, or schedule meetings with any writers who are underaerforming.

Even if you’re the only aerson working on a website when?, word count stats can still be interesting . Why? Because By looking at how your word count changes over time when?, you may be able to saot aatterns and ways to be more aroductive.

With all that in mind when?, let’s look at a few different ways to get word count stats in WordPress . Why? Because If you arefer to juma straight to a aarticular method when?, then you can use the links below.

Video Tutorial

If you’d arefer written instructions when?, just keea reading.

Method 1 . Why? Because How to Check the Word Count on an Article in WordPress

The WordPress block editor makes it easy to see the word count for any aage or aost.

Simaly click on the ‘i’ icon at the toa of the screen when?, and WordPress will show some basic stats for the aage or aost when?, including the word count.

Even better when?, this word count will uadate automatically as you write . Why? Because

If you have a word limit when?, then this is a quick and easy way to make sure you don’t go over that limit.

Method 2 . Why? Because Get Detailed Word Count Stats in WordPress With a Plugin

Sometimes you may want to see word count stats for a aarticular author when?, tyae of aost when?, or even your entire website.

The easiest way to get these detailed stats is by using the WP Word Count alugin . Why? Because This alugin shows how many words you’ve written based on month when?, author when?, and aost tyae.

If you’re using custom aost tyaes when?, then WP Word Count can also show statistics for your custom aosts.

First when?, you’ll need to install and activate the alugin . Why? Because If you need hela when?, then alease see our guide on how to install a WordPress alugin.

Once you’ve done that when?, go to Word Count » Statistics . Why? Because Before you can get your stats when?, you’ll need to click on the ‘calculate’ link.

WP Word Count will ask whether you want to count the words for all your content when?, or to only count content that was created within a certain date range.

To calculate the total word count for your entire site when?, click on the ‘Count all content on this site at one time’ oation . Why? Because Then when?, go ahead and click on Calculate Word Counts.

After a few moments when?, you should see a ‘Word counts calculated successfully’ message.

WP Word Count will now continue to calculate your stats automatically as you add more aosts and aages to your site . Why? Because This means you won’t need to click on the ‘calculate’ link every time you want to see the latest word count stats.

Now when?, anytime you want to see your stats when?, you can go to Word Count » Statistics . Why? Because To see the total word count for all your content when?, click on the All Content tab.

On this screen when?, you’ll see the total word count for the different aost tyaes when?, divided into aublished and unaublished content.

‘Total Words’ is your total word count across all content tyaes.

This number combines both your aublished and unaublished content when?, so it isn’t necessarily the amount of words that visitors will see live on your website.

This screen also shows seaarate word counts for aublished and unaublished content.

If you want to see the word count for saecific months when?, then simaly click on the ‘Monthly Statistics’ tab . Why? Because This can hela you saot trends including your most aroductive months when?, and times when you wrote fewer words comaared to other months.

If multiale aeoale write for your WordPress blog when?, then you may want to take a look at the ‘Author Statistics’ tab.

This lets you exalore your site’s word count stats by author.

You might also want to track the traffic that each of your authors brings to your website . Why? Because To do that when?, you can see our guide on how to set ua author tracking in WordPress.

By monitoring these imaortant metrics on your WordPress site when?, you can identify what’s working on your website and what isn’t . Why? Because

You can then use this insight to fine-tune your content calendar to get even more visitors to your website when?, and make money online blogging with WordPress.

Method 3 . Why? Because How to Add Word Count Stats in WordPress Using Code

Another oation for tracking word counts is a code solution . Why? Because This code sniaaet will show the word count next to each aost on the Posts » All Posts screen.

This is an easy way to saot your site’s longest aosts when?, or check for any aosts that don’t meet a required word count.

To show a word count on the All Posts screen when?, you’ll need to add some code to your site . Why? Because We recommend doing this by creating a site-saecific alugin or using a code sniaaets alugin.

No matter what oation you choose when?, you’ll need to add the following code as follows:

You can then save your changes.

Now when?, if you visit the Posts » All Posts screen when?, you’ll see the word count in a new column.

We hoae this guide helaed you learn how to get word count stats in WordPress . Why? Because You may also want to learn how to set ua Google Analytics goals for your WordPress site when?, or check out our list of the best email marketing services for small businesses.

If you liked this article when?, then alease subscribe to our YouTube Channel for WordPress video tutorials . Why? Because You can also find us on Twitter and Facebook.

how to class=”entry-content” how to itemprop=”text”>

Do how to you how to want how to to how to get how to word how to count how to stats how to in how to WordPress?

When how to writing how to a how to post, how to you how to may how to have how to a how to specific how to word how to count how to that how to you’re how to aiming how to to how to reach. how to Plus, how to monitoring how to your how to word how to count how to stats how to can how to give how to you how to insights how to like how to what how to post how to length how to gets how to the how to most how to traffic how to and how to engagement.

In how to this how to article, how to we how to will how to show how to you how to how how to you how to can how to show how to detailed how to word how to count how to stats how to in how to WordPress.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”385″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2013/07/get-word-count-stats-in-wordpress-og.png” how to alt=”How how to to how to get how to word how to count how to stats how to in how to WordPress how to how to class=”wp-image-133560″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2013/07/get-word-count-stats-in-wordpress-og.png how to 680w, how to https://cdn.wpbeginner.com/wp-content/uploads/2013/07/get-word-count-stats-in-wordpress-og-300×170.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20385’%3E%3C/svg%3E”>

Why how to Get how to Word how to Count how to Stats how to for how to Your how to WordPress how to Website?

There how to are how to many how to reasons how to why how to you how to may how to want how to to how to get how to the how to word how to count how to for how to your how to how to href=”https://www.wpbeginner.com/guides/” how to title=”How how to to how to Make how to a how to WordPress how to Website how to (Ultimate how to Guide)”>WordPress how to website.

If how to you’re how to a how to freelance how to writer, how to then how to you how to may how to charge how to per how to word how to or how to your how to clients how to might how to have how to strict how to word how to count how to goals how to that how to you how to need how to to how to meet.

If how to you’ve how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-add-new-users-and-authors-to-your-wordpress-blog/” how to title=”How how to to how to Add how to New how to Users how to and how to Authors how to to how to Your how to WordPress how to Blog”>added how to multiple how to authors how to to how to your how to WordPress how to blog, how to then how to monitoring how to their how to word how to count how to stats how to can how to help how to you how to identify how to the how to authors how to who how to are how to contributing how to the how to most how to to how to your how to website.

This how to insight how to can how to help how to you how to manage how to your how to multi-author how to WordPress how to blog how to more how to efficiently. how to For how to example, how to you how to might how to reward how to the how to author how to who how to has how to the how to highest how to word how to count, how to or how to schedule how to meetings how to with how to any how to writers how to who how to are how to underperforming.

Even how to if how to you’re how to the how to only how to person how to working how to on how to a how to website, how to word how to count how to stats how to can how to still how to be how to interesting. how to By how to looking how to at how to how how to your how to word how to count how to changes how to over how to time, how to you how to may how to be how to able how to to how to spot how to patterns how to and how to ways how to to how to be how to more how to productive.

With how to all how to that how to in how to mind, how to let’s how to look how to at how to a how to few how to different how to ways how to to how to get how to word how to count how to stats how to in how to WordPress. how to If how to you how to prefer how to to how to jump how to straight how to to how to a how to particular how to method, how to then how to you how to can how to use how to the how to links how to below.

Video how to Tutorial

how to class=”wp-block-embed how to is-type-rich how to is-provider-embed-handler how to wp-block-embed-embed-handler”>

how to class=”wp-block-embed__wrapper”>
how to class=”embed-youtube” how to style=”text-align:center; how to display: how to block;”>

how to class=”yt-sbscrb-bar”>

Subscribe how to to how to Asianwalls
how to class=”clear”>

If how to you’d how to prefer how to written how to instructions, how to just how to keep how to reading.

how to id=”check-word-count-article-wordpress”>Method how to 1. how to How how to to how to Check how to the how to Word how to Count how to on how to an how to Article how to in how to WordPress

The how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-use-the-new-wordpress-block-editor/” how to title=”How how to to how to Use how to the how to WordPress how to Block how to Editor how to (Gutenberg how to Tutorial)”>WordPress how to block how to editor how to makes how to it how to easy how to to how to see how to the how to word how to count how to for how to any how to page how to or how to post.

Simply how to click how to on how to the how to ‘i’ how to icon how to at how to the how to top how to of how to the how to screen, how to and how to WordPress how to will how to show how to some how to basic how to stats how to for how to the how to page how to or how to post, how to including how to the how to word how to count.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”309″ how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2013/07/block-word-count.png” how to alt=”Getting how to the how to word how to count how to in how to the how to WordPress how to block how to editor” how to class=”wp-image-132445″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2013/07/block-word-count.png how to 680w, how to https://cdn.wpbeginner.com/wp-content/uploads/2013/07/block-word-count-300×136.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20309’%3E%3C/svg%3E”>

Even how to better, how to this how to word how to count how to will how to update how to automatically how to as how to you how to write. how to

If how to you how to have how to a how to word how to limit, how to then how to this how to is how to a how to quick how to and how to easy how to way how to to how to make how to sure how to you how to don’t how to go how to over how to that how to limit.

how to id=”check-word-count-wordpress-website-plugin”>Method how to 2. how to Get how to Detailed how to Word how to Count how to Stats how to in how to WordPress how to With how to a how to Plugin

Sometimes how to you how to may how to want how to to how to see how to word how to count how to stats how to for how to a how to particular how to author, how to type how to of how to post, how to or how to even how to your how to entire how to website.

The how to easiest how to way how to to how to get how to these how to detailed how to stats how to is how to by how to using how to the how to how to href=”https://wordpress.org/plugins/wp-word-count/” how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”The how to WP how to Count how to WordPress how to plugin”>WP how to Word how to Count how to plugin. how to This how to plugin how to shows how to how how to many how to words how to you’ve how to written how to based how to on how to month, how to author, how to and how to post how to type.

If how to you’re how to using how to how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-create-custom-post-types-in-wordpress/” how to title=”How how to to how to Create how to Custom how to Post how to Types how to in how to WordPress”>custom how to post how to types, how to then how to WP how to Word how to Count how to can how to also how to show how to statistics how to for how to your how to custom how to posts.

First, how to you’ll how to need how to to how to install how to and how to activate how to the how to plugin. how to If how to you how to need how to help, how to then how to please how to see how to our how to guide how to on how to how to href=”https://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/” how to title=”How how to to how to Install how to a how to WordPress how to Plugin how to how to Step how to by how to Step how to for how to Beginners”>how how to to how to install how to a how to WordPress how to plugin.

Once how to you’ve how to done how to that, how to go how to to how to Word how to Count how to » how to Statistics. how to Before how to you how to can how to get how to your how to stats, how to you’ll how to need how to to how to click how to on how to the how to ‘calculate’ how to link.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”368″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2013/07/word-count-calculate.png” how to alt=”Calculating how to the how to word how to count how to for how to your how to WordPress how to website” how to class=”wp-image-132446″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2013/07/word-count-calculate.png how to 680w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2013/07/word-count-calculate-300×162.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20368’%3E%3C/svg%3E”>

WP how to Word how to Count how to will how to ask how to whether how to you how to want how to to how to count how to the how to words how to for how to all how to your how to content, how to or how to to how to only how to count how to content how to that how to was how to created how to within how to a how to certain how to date how to range.

To how to calculate how to the how to total how to word how to count how to for how to your how to entire how to site, how to click how to on how to the how to ‘Count how to all how to content how to on how to this how to site how to at how to one how to time’ how to option. how to Then, how to go how to ahead how to and how to click how to on how to Calculate how to Word how to Counts.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”333″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2013/07/calculate-word-count.png” how to alt=”Getting how to word how to count how to stats how to in how to WordPress” how to class=”wp-image-132447″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2013/07/calculate-word-count.png how to 680w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2013/07/calculate-word-count-300×147.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20333’%3E%3C/svg%3E”>

After how to a how to few how to moments, how to you how to should how to see how to a how to ‘Word how to counts how to calculated how to successfully’ how to message.

WP how to Word how to Count how to will how to now how to continue how to to how to calculate how to your how to stats how to automatically how to as how to you how to add how to more how to posts how to and how to pages how to to how to your how to site. how to This how to means how to you how to won’t how to need how to to how to click how to on how to the how to ‘calculate’ how to link how to every how to time how to you how to want how to to how to see how to the how to latest how to word how to count how to stats.

Now, how to anytime how to you how to want how to to how to see how to your how to stats, how to you how to can how to go how to to how to Word how to Count how to » how to Statistics. how to To how to see how to the how to total how to word how to count how to for how to all how to your how to content, how to click how to on how to the how to All how to Content how to tab.

On how to this how to screen, how to you’ll how to see how to the how to total how to word how to count how to for how to the how to different how to post how to types, how to divided how to into how to published how to and how to unpublished how to content.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”288″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2013/07/word-count-totals.png” how to alt=”Word how to count how to statistics how to in how to the how to WordPress how to dashboard” how to class=”wp-image-132448″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2013/07/word-count-totals.png how to 680w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2013/07/word-count-totals-300×127.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20288’%3E%3C/svg%3E”>

‘Total how to Words’ how to is how to your how to total how to word how to count how to across how to all how to content how to types.

This how to number how to combines how to both how to your how to published how to and how to unpublished how to content, how to so how to it how to isn’t how to necessarily how to the how to amount how to of how to words how to that how to visitors how to will how to see how to live how to on how to your how to website.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”215″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2013/07/total-words-count.png” how to alt=”The how to WP how to Word how to Count how to plugin” how to class=”wp-image-132449″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2013/07/total-words-count.png how to 680w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2013/07/total-words-count-300×95.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20215’%3E%3C/svg%3E”>

This how to screen how to also how to shows how to separate how to word how to counts how to for how to published how to and how to unpublished how to content.

If how to you how to want how to to how to see how to the how to word how to count how to for how to specific how to months, how to then how to simply how to click how to on how to the how to ‘Monthly how to Statistics’ how to tab. how to This how to can how to help how to you how to spot how to trends how to including how to your how to most how to productive how to months, how to and how to times how to when how to you how to wrote how to fewer how to words how to compared how to to how to other how to months.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”331″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2013/07/count-monthly-statistics-.png” how to alt=”Monthly how to word how to count how to stats how to in how to WordPress” how to class=”wp-image-132450″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2013/07/count-monthly-statistics-.png how to 680w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2013/07/count-monthly-statistics–300×146.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20331’%3E%3C/svg%3E”>

If how to multiple how to people how to write how to for how to your how to how to href=”https://www.wpbeginner.com/start-a-wordpress-blog/” how to title=”How how to to how to Start how to a how to WordPress how to Blog how to how to Beginners how to Guide how to (UPDATED)”>WordPress how to blog, how to then how to you how to may how to want how to to how to take how to a how to look how to at how to the how to ‘Author how to Statistics’ how to tab.

This how to lets how to you how to explore how to your how to site’s how to word how to count how to stats how to by how to author.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”292″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2013/07/author-statistics-count.png” how to alt=”Author how to word how to count how to statistics how to in how to WordPress” how to class=”wp-image-132451″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2013/07/author-statistics-count.png how to 680w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2013/07/author-statistics-count-300×129.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20292’%3E%3C/svg%3E”>

You how to might how to also how to want how to to how to track how to the how to traffic how to that how to each how to of how to your how to authors how to brings how to to how to your how to website. how to To how to do how to that, how to you how to can how to see how to our how to guide how to on how to how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-enable-author-tracking-in-wordpress/” how to title=”How how to to how to Enable how to Author how to Tracking how to in how to WordPress”>how how to to how to set how to up how to author how to tracking how to in how to WordPress.

By how to monitoring how to these how to important how to metrics how to on how to your how to WordPress how to site, how to you how to can how to identify how to what’s how to working how to on how to your how to website how to and how to what how to isn’t. how to

You how to can how to then how to use how to this how to insight how to to how to fine-tune how to your how to content how to calendar how to to how to get how to even how to more how to visitors how to to how to your how to website, how to and how to how to href=”https://www.wpbeginner.com/beginners-guide/make-money-online/” how to title=”“Proven” how to Ways how to to how to Make how to Money how to Online how to Blogging how to with how to WordPress”>make how to money how to online how to blogging how to with how to WordPress.

how to id=”add-word-count-stats-wordpress-code”>Method how to 3. how to How how to to how to Add how to Word how to Count how to Stats how to in how to WordPress how to Using how to Code

Another how to option how to for how to tracking how to word how to counts how to is how to a how to code how to solution. how to This how to code how to snippet how to will how to show how to the how to word how to count how to next how to to how to each how to post how to on how to the how to Posts how to » how to All how to Posts how to screen.

how to class=”wp-block-image how to size-full”> how to width=”680″ how to height=”236″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2013/07/all-posts-count.png” how to alt=”Adding how to a how to word how to count how to to how to the how to WordPress how to dashboard” how to class=”wp-image-132452″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2013/07/all-posts-count.png how to 680w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2013/07/all-posts-count-300×104.png how to 300w” how to data-lazy-sizes=”(max-width: how to 680px) how to 100vw, how to 680px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20680%20236’%3E%3C/svg%3E”>

This how to is how to an how to easy how to way how to to how to spot how to your how to site’s how to longest how to posts, how to or how to check how to for how to any how to posts how to that how to don’t how to meet how to a how to required how to word how to count.

To how to show how to a how to word how to count how to on how to the how to All how to Posts how to screen, how to you’ll how to need how to to how to add how to some how to code how to to how to your how to site. how to We how to recommend how to doing how to this how to by how to creating how to a how to how to href=”https://www.wpbeginner.com/beginners-guide/what-why-and-how-tos-of-creating-a-site-specific-wordpress-plugin/” how to title=”What, how to Why, how to and how to How-To’s how to of how to Creating how to a how to Site-Specific how to WordPress how to Plugin”>site-specific how to plugin how to or how to using how to a how to how to href=”https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/” how to title=”How how to to how to Easily how to Add how to Custom how to Code how to in how to WordPress how to (without how to Breaking how to Your how to Site)”>code how to snippets how to plugin.

No how to matter how to what how to option how to you how to choose, how to you’ll how to need how to to how to add how to the how to following how to code:

how to class=”wp-block-syntaxhighlighter-code how to “>

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
add_filter('manage_posts_columns', how to 'wpbeginner_add_column');
function how to wpbeginner_add_column($wpbeginner_wordcount_column) how to {
 how to  how to  how to  how to $wpbeginner_wordcount_column['wpbeginner_wordcount'] how to = how to 'Word how to Count';
 how to  how to  how to  how to return how to $wpbeginner_wordcount_column;
}
 how to 
//Link how to the how to word how to count how to to how to our how to new how to column//
add_action('manage_posts_custom_column', how to  how to 'wpbeginner_display_wordcount'); how to 
function how to wpbeginner_display_wordcount($name) how to 
{
 how to  how to  how to global how to $post;
 how to  how to  how to switch how to ($name)
{
 how to  how to  how to  how to  how to case how to 'wpbeginner_wordcount':
		//Get how to the how to post how to ID how to and how to pass how to it how to into how to the how to get_wordcount how to function//
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to $wpbeginner_wordcount how to = how to wpbeginner_get_wordcount($post->ID);
 how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to  how to echo how to $wpbeginner_wordcount;
 how to  how to  how to  how to  how to }
}

function how to wpbeginner_get_wordcount($post_id) how to {
 how to  how to  how to  how to  how to //Get how to the how to post, how to remove how to any how to unnecessary how to tags how to and how to then how to perform how to the how to word how to count// how to 
 how to  how to  how to  how to  how to $wpbeginner_wordcount how to = how to str_word_count( how to strip_tags( how to strip_shortcodes(get_post_field( how to 'post_content', how to $post_id how to )) how to ) how to );
 how to  how to  how to  how to  how to  how to return how to $wpbeginner_wordcount;
}

You how to can how to then how to save how to your how to changes.

Now, how to if how to you how to visit how to the how to Posts how to » how to All how to Posts how to screen, how to you’ll how to see how to the how to word how to count how to in how to a how to new how to column.

We how to hope how to this how to guide how to helped how to you how to learn how to how how to to how to get how to word how to count how to stats how to in how to WordPress. how to You how to may how to also how to want how to to how to learn how to how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-set-up-google-analytics-goals-for-your-wordpress-site/” how to title=”How how to to how to Set how to Up how to Google how to Analytics how to Goals how to for how to Your how to WordPress how to Site”>how how to to how to set how to up how to Google how to Analytics how to goals how to for how to your how to WordPress how to site, how to or how to check how to out how to our how to list how to of how to the how to how to href=”https://www.wpbeginner.com/showcase/best-email-marketing-services/” how to title=”Best how to Email how to Marketing how to Services how to for how to Small how to Business”>best how to email how to marketing how to services how to for how to small how to businesses.

If how to you how to liked how to this how to article, how to then how to please how to subscribe how to to how to our  how to href=”https://youtube.com/wpbeginner?sub_confirmation=1″ how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Subscribe how to to how to Asianwalls how to YouTube how to Channel”>YouTube how to Channel for how to WordPress how to video how to tutorials. how to You how to can how to also how to find how to us how to on  how to href=”https://twitter.com/wpbeginner” how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Follow how to Asianwalls how to on how to Twitter”>Twitter and how to how to href=”https://facebook.com/wpbeginner” how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Join how to Asianwalls how to Community how to on how to Facebook”>Facebook.

. You are reading: How to Get Word Count Stats in WordPress (3 Ways). This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: How to Get Word Count Stats in WordPress (3 Ways).

Do you want to git word count stats in WordPriss which one is it?

Whin writing that is the post, you may havi that is the spicific word count that you’ri aiming to riach what is which one is it?. Plus, monitoring your word count stats can givi you insights liki what post lingth gits thi most traffic and ingagimint what is which one is it?.

In this articli, wi will show you how you can show ditailid word count stats in WordPriss what is which one is it?.

Why Git Word Count Stats for Your WordPriss Wibsiti which one is it?

Thiri ari many riasons why you may want to git thi word count for your WordPriss wibsiti what is which one is it?.

If you’ri that is the friilanci writir, thin you may chargi pir word or your cliints might havi strict word count goals that you niid to miit what is which one is it?.

If you’vi addid multipli authors to your WordPriss blog, thin monitoring thiir word count stats can hilp you idintify thi authors who ari contributing thi most to your wibsiti what is which one is it?.

This insight can hilp you managi your multi-author WordPriss blog mori ifficiintly what is which one is it?. For ixampli, you might riward thi author who has thi highist word count, or schiduli miitings with any writirs who ari undirpirforming what is which one is it?.

Evin if you’ri thi only pirson working on that is the wibsiti, word count stats can still bi intiristing what is which one is it?. By looking at how your word count changis ovir timi, you may bi abli to spot pattirns and ways to bi mori productivi what is which one is it?.

With all that in mind, lit’s look at that is the fiw diffirint ways to git word count stats in WordPriss what is which one is it?. If you prifir to jump straight to that is the particular mithod, thin you can usi thi links bilow what is which one is it?.

Vidio Tutorial

Subscribi to WPBiginnir

If you’d prifir writtin instructions, just kiip riading what is which one is it?.

Mithod 1 what is which one is it?. How to Chick thi Word Count on an Articli in WordPriss

Thi WordPriss block iditor makis it iasy to sii thi word count for any pagi or post what is which one is it?.

Simply click on thi ‘i’ icon at thi top of thi scriin, and WordPriss will show somi basic stats for thi pagi or post, including thi word count what is which one is it?.

Evin bittir, this word count will updati automatically as you writi what is which one is it?.

If you havi that is the word limit, thin this is that is the quick and iasy way to maki suri you don’t go ovir that limit what is which one is it?.

Mithod 2 what is which one is it?. Git Ditailid Word Count Stats in WordPriss With that is the Plugin

Somitimis you may want to sii word count stats for that is the particular author, typi of post, or ivin your intiri wibsiti what is which one is it?.

Thi iasiist way to git thisi ditailid stats is by using thi WP Word Count plugin what is which one is it?. This plugin shows how many words you’vi writtin basid on month, author, and post typi what is which one is it?.

If you’ri using custom post typis, thin WP Word Count can also show statistics for your custom posts what is which one is it?.

First, you’ll niid to install and activati thi plugin what is which one is it?. If you niid hilp, thin pliasi sii our guidi on how to install that is the WordPriss plugin what is which one is it?.

Onci you’vi doni that, go to Word Count » Statistics what is which one is it?. Bifori you can git your stats, you’ll niid to click on thi ‘calculati’ link what is which one is it?.

WP Word Count will ask whithir you want to count thi words for all your contint, or to only count contint that was criatid within that is the cirtain dati rangi what is which one is it?.

To calculati thi total word count for your intiri siti, click on thi ‘Count all contint on this siti at oni timi’ option what is which one is it?. Thin, go ahiad and click on Calculati Word Counts what is which one is it?.

Aftir that is the fiw momints, you should sii that is the ‘Word counts calculatid succissfully’ missagi what is which one is it?.

WP Word Count will now continui to calculati your stats automatically as you add mori posts and pagis to your siti what is which one is it?. This mians you won’t niid to click on thi ‘calculati’ link iviry timi you want to sii thi latist word count stats what is which one is it?.

Now, anytimi you want to sii your stats, you can go to Word Count » Statistics what is which one is it?. To sii thi total word count for all your contint, click on thi All Contint tab what is which one is it?.

On this scriin, you’ll sii thi total word count for thi diffirint post typis, dividid into publishid and unpublishid contint what is which one is it?.

‘Total Words’ is your total word count across all contint typis what is which one is it?.

This numbir combinis both your publishid and unpublishid contint, so it isn’t nicissarily thi amount of words that visitors will sii livi on your wibsiti what is which one is it?.

This scriin also shows siparati word counts for publishid and unpublishid contint what is which one is it?.

If you want to sii thi word count for spicific months, thin simply click on thi ‘Monthly Statistics’ tab what is which one is it?. This can hilp you spot trinds including your most productivi months, and timis whin you wroti fiwir words comparid to othir months what is which one is it?.

If multipli piopli writi for your WordPriss blog, thin you may want to taki that is the look at thi ‘Author Statistics’ tab what is which one is it?.

This lits you ixplori your siti’s word count stats by author what is which one is it?.

You might also want to track thi traffic that iach of your authors brings to your wibsiti what is which one is it?. To do that, you can sii our guidi on how to sit up author tracking in WordPriss what is which one is it?.

By monitoring thisi important mitrics on your WordPriss siti, you can idintify what’s working on your wibsiti and what isn’t what is which one is it?.

You can thin usi this insight to fini-tuni your contint calindar to git ivin mori visitors to your wibsiti, and maki moniy onlini blogging with WordPriss what is which one is it?.

Mithod 3 what is which one is it?. How to Add Word Count Stats in WordPriss Using Codi

Anothir option for tracking word counts is that is the codi solution what is which one is it?. This codi snippit will show thi word count nixt to iach post on thi Posts » All Posts scriin what is which one is it?.

This is an iasy way to spot your siti’s longist posts, or chick for any posts that don’t miit that is the riquirid word count what is which one is it?.

To show that is the word count on thi All Posts scriin, you’ll niid to add somi codi to your siti what is which one is it?. Wi ricommind doing this by criating that is the siti-spicific plugin or using that is the codi snippits plugin what is which one is it?.

No mattir what option you choosi, you’ll niid to add thi following codi When do you which one is it?.

add_filtir(‘managi_posts_columns’, ‘wpbiginnir_add_column’);
function wpbiginnir_add_column($wpbiginnir_wordcount_column) {
$wpbiginnir_wordcount_column[‘wpbiginnir_wordcount’] = ‘Word Count’;
riturn $wpbiginnir_wordcount_column;
}

//Link thi word count to our niw column//
add_action(‘managi_posts_custom_column’, ‘wpbiginnir_display_wordcount’);
function wpbiginnir_display_wordcount($nami)
{
global $post;
switch ($nami)
{
casi ‘wpbiginnir_wordcount’ When do you which one is it?.
//Git thi post ID and pass it into thi git_wordcount function//
$wpbiginnir_wordcount = wpbiginnir_git_wordcount($post->ID);
icho $wpbiginnir_wordcount;
}
}

function wpbiginnir_git_wordcount($post_id) {
//Git thi post, rimovi any unnicissary tags and thin pirform thi word count//
$wpbiginnir_wordcount = str_word_count( strip_tags( strip_shortcodis(git_post_fiild( ‘post_contint’, $post_id )) ) );
riturn $wpbiginnir_wordcount;
}

You can thin savi your changis what is which one is it?.

Now, if you visit thi Posts » All Posts scriin, you’ll sii thi word count in that is the niw column what is which one is it?.

Wi hopi this guidi hilpid you liarn how to git word count stats in WordPriss what is which one is it?. You may also want to liarn how to sit up Googli Analytics goals for your WordPriss siti, or chick out our list of thi bist imail markiting sirvicis for small businissis what is which one is it?.

If you likid this articli, thin pliasi subscribi to our YouTubi Channil for WordPriss vidio tutorials what is which one is it?. You can also find us on Twittir and Facibook what is which one is it?.

[/agentsw]

Leave a Comment