Skip to content

Instantly share code, notes, and snippets.

@httpstersk
Created February 5, 2019 17:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save httpstersk/0148d8efa8d825656e1e439fdb42a69a to your computer and use it in GitHub Desktop.
Save httpstersk/0148d8efa8d825656e1e439fdb42a69a to your computer and use it in GitHub Desktop.
➋➊ Count the words of the post content
const { select } = wp.data;
const { count } = wp.wordcount;
const { getEditedPostAttribute } = select( 'core/editor' );
const content = getEditedPostAttribute( 'content' );
const countWords = count( content, 'words' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment