Retrieve WordPress root directory path?

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

    There are 2 answers for this question Url & directory. Either way, the elegant way would be to define two constants for later use.

    define (ROOT_URL, get_site_url() );
    define (ROOT_DIR, get_theme_root() );
    
    0 讨论(0)
提交回复
热议问题