This file contains 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
<?php | |
/** | |
* Add height field to ACF WYSIWYG | |
*/ | |
function wysiwyg_render_field_settings( $field ) { | |
acf_render_field_setting( $field, array( | |
'label' => __('Height of Editor'), | |
'instructions' => __('Height of Editor after Init'), | |
'name' => 'wysiwyg_height', | |
'type' => 'number', |