/*
 Theme Name:   Ask Marcel
 Theme URI:    https://askmarcel.co.uk
 Description:  Child theme
 Author:       Mike Oliver
 Author URI:   https://askmarcel.co.uk
 Template:     generatepress
 Version:      0.1
*/

add_filter('wp_theme_json_data_default', function ($theme_json_data) {
    $new_data = [
        'version' => 2,
        'settings' => [
            'blocks' => [
                'core/image' => [
                    'lightbox' => [
                        'enabled' => true
                    ]
                ]
            ]
        ]
    ];
    return $theme_json_data->update_with($new_data);
});