Created
February 5, 2019 17:25
-
-
Save httpstersk/0148d8efa8d825656e1e439fdb42a69a to your computer and use it in GitHub Desktop.
➋➊ Count the words of the post content
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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