Retrieve WordPress root directory path?

后端 未结 13 1403
闹比i
闹比i 2020-11-28 07:48

How can I retrieve the path to the root directory in WordPress CMS?

13条回答
  •  一生所求
    2020-11-28 08:28

    I think this would do the trick:

    function get_wp_installation()
    {
        $full_path = getcwd();
        $ar = explode("wp-", $full_path);
        return $ar[0];
    }
    

提交回复
热议问题