Created
February 19, 2019 12:22
-
-
Save doitonlinemedia/9bf8d1f1cca2acf17e70ad8159507178 to your computer and use it in GitHub Desktop.
Small tinymce wusiwyg.php
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
/** | |
* Small tinymce | |
*/ | |
function dom_small_tinymce() { | |
echo '<style> | |
.small .acf-editor-wrap iframe { | |
height: 150px !important; | |
min-height: 150px; | |
} | |
</style>'; | |
} | |
add_action('admin_head', 'dom_small_tinymce'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment