Skip to content

Instantly share code, notes, and snippets.

@devomman
Forked from yousufansa/functions.php
Created December 14, 2020 16:27
Show Gist options
  • Save devomman/7103232eb52c3fb7d18df5617ee98ab3 to your computer and use it in GitHub Desktop.
Save devomman/7103232eb52c3fb7d18df5617ee98ab3 to your computer and use it in GitHub Desktop.
WordPress 5.6 Update Editor Width Fix
if( ! function_exists( 'wp_5_6_editor_wp_block_width_fix' ) ) {
function wp_5_6_editor_wp_block_width_fix() {
if( version_compare( get_bloginfo( 'version' ), '5.6', '>=' ) ) {
echo '<style>.interface-interface-skeleton__editor { max-width: 100%; }</style>';
}
}
}
add_action( 'admin_head', 'wp_5_6_editor_wp_block_width_fix' );
@devomman
Copy link
Author

Thanks Now It's Working with 5.6..

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