How to Hide the "Simple Share Follow Button" Admin Menu

function plt_hide_simple_share_follow_button_menus() {
	//Hide the "Settings → Simple Share Follow Button" menu.
	remove_submenu_page('options-general.php', 'simplesharefollowbutton');
}

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

Where do I put this code?