Wordpress provides different powerful functions which are useful for different prospective. We are going to discuss one function named get_home_path(). Through this function we can get the path of root directory in your wordpress setup. We can simply call this function and get the path. Please have a look.
<?php
$path = get_home_path();
?>
It will give you the path like /var/www/wordpress.
0 Comment(s)