Skip to content

Instantly share code, notes, and snippets.

@doitonlinemedia
Created February 19, 2019 12:22
Show Gist options
  • Save doitonlinemedia/9bf8d1f1cca2acf17e70ad8159507178 to your computer and use it in GitHub Desktop.
Save doitonlinemedia/9bf8d1f1cca2acf17e70ad8159507178 to your computer and use it in GitHub Desktop.
Small tinymce wusiwyg.php
/**
* 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