Getting out side of wp root folder from function.php using absolute path
Hi Everyone I am having a relative path issue with linking a css file using a absolute path.
Basically I am having the exact same problem as the person here however I do not want to use the URL of the site to link the css file.
Anything I do, word press tries to put its own file path in front of it.
so if i have done this:
wp_enqueue_style('media', $_SERVER["DOCUMENT_ROOT"] . '/assets/css/media.css');
word press will give me this :
link rel="stylesheet" id="media_style-css" href="http://192.168.1.111/blog/var/www/html/assets/css/media.css?ver=4.0.5" type="text/css" media="all"
and funny enough if I do this:
wp_enqueue_style('main_style', $_SERVER["HTTP_HOST"] . '/assets/css/style.less');
Wordpress decides to give me this....
link rel="stylesheet" id="main_style-css" href="http://192.168.1.111/blog192.168.1.111/assets/css/style.less?ver=4.0.5" type="text/css" media="all"
Is there any way to actually get to the root of my site via function.php or does wordpress just not let you via absolute path?