How to Hide the "Async Sharing Options" Admin Menu

function plt_hide_async_social_sharing_menus() {
	//Hide the "Settings → Async Sharing Options" menu.
	remove_submenu_page('options-general.php', 'async-social-sharing/async-share.php');
}

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

Where do I put this code?