How to Hide the "PDF IMG Generator" Admin Menu

function plt_hide_pdf_image_generator_menus() {
	//Hide the "Settings → PDF IMG Generator" menu.
	remove_submenu_page('options-general.php', 'pdf-image-generator/pdf-image-generator.php');
}

add_action('admin_menu', 'plt_hide_pdf_image_generator_menus', 12);

Where do I put this code?