How to load css in the footer

I was trying to move the load of my style.css in the footer of my wordpress theme. I have already done something similar with 2 js files and it works fine, they load in the footer: function my_init() { if (!is_admin()) { wp_deregister_script('jquery'); wp_register_script('jquery', 'http://www.studionews24.com/wp-content/themes/network/js/jquery.min.js', false, '1.3.2', true); wp_enqueue_script('jquery'); // load a JS file from … Read more

How important is it to enqueue a theme’s stylesheet?

I have trawled the net looking for an answer to this, but for some reason all I can find are actual examples, but without that particular explanation, which is clear say in the case of scripts. Can someone explain to me why it’s important/advantageous to enqueue styles when developing a theme, rather than just using <link rel=stylesheet> in header.php.

How to enqueue the style using wp_enqueue_style()

I’m developing a theme. I added the codes (below) into the header.php. But I posted it into the WP theme repository, and it’s under review, and the reviewer informed me to enqueue the style with wp_enqueue_style()/ wp_enqueue_script(). But can’t understand how to implement it with the function. I’ve seen the directed wp_enqueue_style(); in Codex, but can’t understand how to put the whole bunch of codes with their conditions.