How to Hide the "AutoAds Premiere" Admin Menu

function plt_hide_autoads_premiere_menus() {
	//Hide the "Settings → AutoAds Premiere" menu.
	remove_submenu_page('options-general.php', 'autoads_premiere');
}

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

Where do I put this code?