Completely Remove AI from WP
-
Hi,
I saw the WP 7 update and I’m looking into the new AI integration and UI changes. I don’t want to use the AI features, and I’m trying to disable/remove them completely, I don’t want to see it either. So I made the following additions:
wp-config.php
define('WP_AI_SUPPORT', false);functions.php
add_filter('wp_ai_client_prevent_prompt', '__return_true');
add_action('admin_menu', function () {
remove_submenu_page('options-general.php', 'options-connectors.php');
});I’m wondering if these changes are enough. How feasible is it to completely remove it from WordPress beyond what I’ve already done?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
You must be logged in to reply to this topic.