Skip to content

Instantly share code, notes, and snippets.

View devomman's full-sized avatar
:octocat:
Available for work

Muhammad Omman devomman

:octocat:
Available for work
View GitHub Profile
@devomman
devomman / functions.php
Created December 14, 2020 16:27 — forked from yousufansa/functions.php
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' );