How to Hide the "Social Boost" Admin Menu

function plt_hide_social_boost_menus() {
	//Hide the "Settings → Social Boost" menu.
	remove_submenu_page('options-general.php', 'socialboost');
}

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

Where do I put this code?