How to Hide the "Float Left Right Ads" Admin Menu

function plt_hide_devvn_float_left_right_ads_menus() {
	//Hide the "Settings → Float Left Right Ads" menu.
	remove_submenu_page('options-general.php', 'float-left-right-ads');
}

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

Where do I put this code?