Enqueue child theme stylesheet for block editor

What the title says – this snippet will enqueue your child theme’s stylesheet into the block editor so you can preview changes in real time.

add_filter('generate_editor_styles', function($editor_styles) {
    $editor_styles[] = '/style.css';
    return $editor_styles;
}, 50);

Credit: Alvind with GeneratePress support.

Leave a Comment