How to Hide Srizon Responsive Youtube Album Admin Menus

function plt_hide_srizon_responsive_youtube_album_menus() {
	//Hide the "YouTube Album" menu.
	remove_menu_page('SrzYt');
	//Hide the "YouTube Album → YouTube Album" menu.
	remove_submenu_page('SrzYt', 'SrzYt');
	//Hide the "YouTube Album → Albums" menu.
	remove_submenu_page('SrzYt', 'SrzYt-Albums');
}

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

Where do I put this code?