How to Hide the "MasOffer Promotion" Admin Menu

function plt_hide_masoffer_promotion_menus() {
	//Hide the "Settings → MasOffer Promotion" menu.
	remove_submenu_page('options-general.php', 'masoffer-promotion-official');
}

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

Where do I put this code?