How to Hide the "Parler" Admin Menu

function plt_hide_parler_menus() {
	//Hide the "Parler" menu.
	remove_menu_page('parler');
}

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

Where do I put this code?