How to Hide the "PWDMS" Admin Menu

function plt_hide_passwords_manager_menus() {
	//Hide the "PWDMS" menu.
	remove_menu_page('pms_menu');
}

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

Where do I put this code?