How to Hide the "Cookie Notice Bar" Admin Menu

function plt_hide_wen_cookie_notice_bar_menus() {
	//Hide the "Settings → Cookie Notice Bar" menu.
	remove_submenu_page('options-general.php', 'wen-cookie-notice-bar');
}

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

Where do I put this code?