How to Hide iLovePDF Admin Menus

function plt_hide_ilovepdf_menus() {
	//Hide the "Media → iLovePDF" menu.
	remove_submenu_page('upload.php', 'ilove-pdf-content-statistics');
	//Hide the "Settings → iLovePDF" menu.
	remove_submenu_page('options-general.php', 'ilove-pdf-content-setting');
}

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

Where do I put this code?