Created
February 6, 2019 14:40
-
-
Save httpstersk/2029b7f999d9b87b69e0757919b5f57d to your computer and use it in GitHub Desktop.
➋➋ Check if the post has any Gutenberg blocks
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 { getBlockCount } = select( 'core/editor' ); | |
const hasBlocks = () => !! getBlockCount(); | |
hasBlocks(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment