I have the following css in my header();.
<link rel="shortcut icon" href="/favicon.ico">
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>">
I know that this will only load 1 css file to all of my pages. My question is, can anyone shoot me a loop that will plug in all the correct style sheets for each individual templates? Keep in mind that all my page temples use the get_header();, get_sidebar();, and get_footer();, so the only thing changing is the content.
So i'm guessing a need a loop in my header.php file that does the following:
load "this.css" on "thispage.php"
load "this_other.css" on "this_other_page.php"
etc. etc.
Any suggestions?