How to Hide the "AI Story Maker" Admin Menu

function plt_hide_ai_story_maker_menus() {
	//Hide the "AI Story Maker" menu.
	remove_menu_page('aistma-settings');
}

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

Where do I put this code?