How to Hide the "AppYourself Chat" Admin Menu

function plt_hide_smart_widget_menus() {
	//Hide the "Settings → AppYourself Chat" menu.
	remove_submenu_page('options-general.php', 'appyourselfchat');
}

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

Where do I put this code?