Retrieve WordPress root directory path?

后端 未结 13 1465
闹比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:26

       Please try this for get the url of root file.
    

    First Way:

     $path = get_home_path();
       print "Path: ".$path; 
    // Return "Path: /var/www/htdocs/" or
    
    // "Path: /var/www/htdocs/wordpress/" if it is subfolder
    

    Second Way:

    And you can also use 
    
        "ABSPATH"
    
    this constant is define in wordpress config file.
    

提交回复
热议问题