/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/
function disable_work_archive() {
    register_post_type('work', array(
        'label' => 'Work',
        'public' => true,
        'rewrite' => array('slug' => 'work'),
        'has_archive' => false, // Disables the archive
        'show_in_rest' => true, // Optional for Gutenberg compatibility
    ));
}
add_action('init', 'disable_work_archive', 10);