How to Hide the "DK PDF" Admin Menu

function plt_hide_dk_pdf_menus() {
	//Hide the "DK PDF" menu.
	remove_menu_page('dkpdf_settings');
}

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

Where do I put this code?