php WP路径和网址

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WP路径和网址相关的知识,希望对你有一定的参考价值。

---

get_home_url();
home_url();
// no '/' at the end
// (str) "http|https://site.com"

---

admin_url();
// '/' at the end
// (str) "http|https://site.com/wp-admin/"

---

get_template_directory_uri();
get_bloginfo('template_url');
// no '/' at the end
// (str) "http|https://site.com/wp-content/themes/theme_name"

---

get_template_directory();
TEMPLATEPATH
// no '/' at the end
// (str) "/home/site.com/public_html/wp-content/themes/theme_name"

Child Theme URL
get_stylesheet_directory_uri()
// no '/' at the end
// (str) "/home/site.com/public_html/wp-content/themes/child_theme"
---

get_template();
// (str) "theme_name"

---

get_theme_root();
// no '/' at the end
// (str) "/home/site.com/public_html/wp-content/themes"

---

get_theme_root_uri();
// no '/' at the end
// (str) "http|https://site.com/wp-content/themes"

以上是关于php WP路径和网址的主要内容,如果未能解决你的问题,请参考以下文章

PHP WP短代码 - 检索作者页面网址

php wp_login_form()中丢失的密码网址;

php wp_login_form()中丢失的密码网址;

php 创建“友好”网址以访问您的WP All Export数据Feed,例如http://example.com/get-feed.php。只需(1)更改指示的URL

php上的相对路径[关闭]

WP Plugin 中的异步 php 代码