Skip to content

Instantly share code, notes, and snippets.

@IAMAdamN
Last active December 12, 2022 04:35
Show Gist options
  • Save IAMAdamN/26556b46e364186fb98a108e44b2ccfa to your computer and use it in GitHub Desktop.
Save IAMAdamN/26556b46e364186fb98a108e44b2ccfa to your computer and use it in GitHub Desktop.
Wordpress Disable full-height editor and distraction-free functionality
<?php
/**
* Disable Distraction Free Writing Mode and the "Auto Expanding"
* height of the editor based on a list of post types.
*
* @return void
*/
function my_deregister_editor_expand($val, $post_type)
{
$disabled_post_types = array('custom_post_type', 'page');
return !in_array($post_type, $disabled_post_types);
}
add_filter('wp_editor_expand', 'my_deregister_editor_expand', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment