How to Hide the "Reveal Button" Admin Menu

function plt_hide_coupon_reveal_button_menus() {
	//Hide the "Reveal Button" menu.
	remove_menu_page('spbcta_plugin');
}

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

Where do I put this code?