I have one stylesheet linked to my Wordpress page in header section:
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/style.css" />
Now, I want to load different stylesheets on a few pages or sub-pages.
What's the best/correct way of achieving this?
I'm thinking about writing my own shortcode calling "wp_enqueue_style", is that a good idea?