Recently, while attempting to make modifications to a WordPress theme, I encountered an issue with how the theme was incorporating a stylesheet file.
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
It came to my attention that the stylesheet_url pointed to the style.css file in the root folder. Is there a way for me to adjust the value of the stylesheet_url to have my own stylesheet file from the css/ directory loaded in place of the default one?