Created
January 3, 2019 15:19
-
-
Save danielstrelec/0483bbc8190b5c0077617dcf46f6489e to your computer and use it in GitHub Desktop.
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
| // povolení vybraných bloků v editoru | |
| function editor_allow_types( $allowed_blocks ) { | |
| return array( | |
| 'core/image', | |
| 'core/paragraph', | |
| 'core/heading', | |
| 'core/list', | |
| 'core/table' | |
| ); | |
| } | |
| add_filter( 'allowed_block_types', 'editor_allow_types' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment