Code to Disable Tags in WordPress

/* Disable Tags in WordPress */
add_action('init', function(){
    register_taxonomy('post_tag', []);
});

If you don’t want ‘Tags‘ to appear anywhere in WordPress, add the above code to your child theme’s functions.php. This will remove the option to add tags to posts from both the block editor and the ‘All Posts’ quick edit list.