How to Hide tencentcloud-vod Admin Menus

function plt_hide_tencentcloud_vod_menus() {
	//Hide the "Tencent Cloud Settings" menu.
	remove_menu_page('TencentWordpressPluginsCommonSettingPage');
	//Hide the "Tencent Cloud Settings → Tencent Cloud Settings" menu.
	remove_submenu_page('TencentWordpressPluginsCommonSettingPage', 'TencentWordpressPluginsCommonSettingPage');
	//Hide the "Tencent Cloud Settings → VOD" menu.
	remove_submenu_page('TencentWordpressPluginsCommonSettingPage', 'TencentCloudVodSettingPage');
}

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

Where do I put this code?