Welcome to ekko!
Please enter your username
and password to login.
Grow your business
Invite new clients
Get Ekko today
Login to continue
Please enter your username and password to login.
function my_custom_enqueue_scripts() {
// Get the current screen
$current_screen = get_current_screen();
// Only enqueue the wp-editor script on post or page editor, not on the widgets or customizer screen
if ( $current_screen && $current_screen->is_block_editor() && !is_customize_preview() && !wp_should_load_block_editor_scripts() ) {
wp_enqueue_script('wp-editor');
}
}
add_action('admin_enqueue_scripts', 'my_custom_enqueue_scripts');