Skip to content

Instantly share code, notes, and snippets.

@itsHall
Last active October 7, 2021 14:07
Show Gist options
  • Save itsHall/73051c485cff04ca903b4bf55bc9d193 to your computer and use it in GitHub Desktop.
Save itsHall/73051c485cff04ca903b4bf55bc9d193 to your computer and use it in GitHub Desktop.
Make ACF WYSIWYG Fields Resizable With HTML Editor Syntax Highlighter Applied
<?php
//-------------------------------------------------------------------------------//
// Make ACF WYSIWYG Fields Resizable With HTML Editor Syntax Highlighter Applied //
//-------------------------------------------------------------------------------//
add_action('admin_head', 'my_custom_styles');
function my_custom_styles() {
echo '<style>
.CodeMirror {
resize: vertical;
overflow-y: auto !important;
}
</style>';
}
@itsHall
Copy link
Author

itsHall commented Jul 20, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment