How to Hide the "BP Sharing YR" Admin Menu

function plt_hide_buddy_share_it_allusers_fb_yr_menus() {
	//Hide the "Settings → BP Sharing YR" menu.
	remove_submenu_page('options-general.php', 'yr-bpshare');
}

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

Where do I put this code?