WordPress: Disable TranslatePress frontend style (trp-language-switcher.css)

If you use TranslatePress but don't use their front-end stuff, you might want to disable the styles from loading on your website to avoid unnecessary clutter. To do that you need the script's ID (handle) and in this case where I want to disable trp-language-switcher.css to be loaded I need its handle ID and it is the following: trp-language-switcher-style. To remove the script we then use wp_dequeue_style() and the function looks like this:


	/* Disable Translatepress Switcher styles */
	wp_dequeue_style('trp-language-switcher-style');