How to Hide the "Hearty Social Light" Admin Menu

function plt_hide_hearty_social_light_menus() {
	//Hide the "Settings → Hearty Social Light" menu.
	remove_submenu_page('options-general.php', 'heartysociallight-setting-admin');
}

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

Where do I put this code?