How to Hide the "Homepuzz" Admin Menu

function plt_hide_homepuzz_button_for_wordpress_menus() {
	//Hide the "Settings → Homepuzz" menu.
	remove_submenu_page('options-general.php', 'homepuzz.php');
}

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

Where do I put this code?