How to Hide the "Feedback with Gripeless" Admin Menu

function plt_hide_penguinet_gripeless_menus() {
	//Hide the "Settings → Feedback with Gripeless" menu.
	remove_submenu_page('options-general.php', 'penguinet-gripeless');
}

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

Where do I put this code?