I have a wordpress with a child theme where in place where is wp_head(); style.css is added like:
<link rel='stylesheet' id='parent-style-css' href='http://something' type='text/css' media='all' />
Id like to remove this style on specific page (lets say this page has ID=5). I've found how to do this in jQuery but it seems like a bad idea to remove styles client-side.
How can I remove this style via php? possibly using https://codex.wordpress.org/Function_Reference/wp_dequeue_style but only on one specific page.