How to Hide the "Add to Home Screen" Admin Menu

function plt_hide_add_to_home_screen_wp_menus() {
	//Hide the "Add to Home Screen" menu.
	remove_menu_page('simple_aths_settings');
}

add_action('admin_menu', 'plt_hide_add_to_home_screen_wp_menus', 21);

Where do I put this code?