How can I retrieve the path to the root directory in WordPress CMS?
I think this would do the trick:
function get_wp_installation() { $full_path = getcwd(); $ar = explode("wp-", $full_path); return $ar[0]; }