Tips on Customizing AI-Powered SEO Suggestions

How to Hide AI-Powered SEO Suggestions Admin Menus

function plt_hide_ai_powered_seo_suggestions_menus() {
	//Hide the "AI-Powered SEO" menu.
	remove_menu_page('ai-powered-seo-suggestions');
	//Hide the "AI-Powered SEO → Settings" menu.
	remove_submenu_page('ai-powered-seo-suggestions', 'ait-aipseo-settings');
}

add_action('admin_menu', 'plt_hide_ai_powered_seo_suggestions_menus', 1000);

Where do I put this code?

How to Hide the "AI-Powered SEO" Meta Box

function plt_hide_ai_powered_seo_suggestions_metaboxes() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Hide the "AI-Powered SEO" meta box.
	remove_meta_box('ait_aipseo_box', $screen->id, 'side');
}

add_action('add_meta_boxes', 'plt_hide_ai_powered_seo_suggestions_metaboxes', 20);