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
| add_action('admin_head', 'admin_css'); | |
| function admin_css() { | |
| echo '<style> | |
| .acf-gallery .acf-gallery-side-data textarea { | |
| display: none; | |
| } | |
| </style>'; | |
| } |
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
| //Disable all default block types and allow custom blocks | |
| add_filter( 'allowed_block_types', 'show_only_custom_blocks' ); | |
| function show_only_custom_blockss( $allowed_blocks ) { | |
| return array( | |
| 'custom-block-category/text', | |
| ); | |
| } |
NewerOlder