How to use wp_dequeue_style() for style enqueued in WP_Widget class
widget() method is called when widget is rendered, so the style you’re enqueuing are printed in the footer (header is already printed at that time). Even if majority of browser can render styles linked from page body, that’s invalid HTML because, according to HTML standards, unlike scrypts, styles must be placed in page <head>. (Try … Read more