I want to add stylesheet wrapped in noscript tag for a custom theme. Does wp_enqueue_style has any support for it? Or should I just include it like we do normally in html?
3 Answers
No, it doesn’t. If you need to use NOSCRIPT, you need to add it to the theme header.php directly or use wp_head
action to add it from code.