Tips on Customizing AI Smart Excerpt

How to Hide the "AI Smart Excerpt" Admin Menu

function plt_hide_a_smart_excerpt_menus() {
	//Hide the "Settings → AI Smart Excerpt" menu.
	remove_submenu_page('options-general.php', 'ai-smart-excerpt');
}

add_action('admin_menu', 'plt_hide_a_smart_excerpt_menus', 11);

Where do I put this code?

How to Hide the "AI Smart Excerpt Keywords" Meta Box

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

	//Hide the "AI Smart Excerpt  Keywords" meta box.
	remove_meta_box('ai-smart-excerpt-meta-box', $screen->id, 'normal');
}

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