WordPress 相关路径函数

home_url($path);//返回站点路径
site_url();//返回站点根目录路径
admin_url();//返回后台目录路径
content_url($path);//返回 wp-content 实际地址
includes_url($path);//返回 wp-includes 实际地址
wp_upload_dir();//返回 上传配置信息(数组)
get_theme_root_uri();//返回主题的目录
get_theme_roots();//返回主题目录名称
get_template();//返回主题名称
get_stylesheet_directory_uri();//返回当前主题目录路径
plugin_dir_url( __FILE__ );//返回插件目录

//系统常量
WP_CONTENT_URL;//wp-content目录的URI地址
WP_PLUGIN_URL;//插件目录的URI地址


你可能感兴趣的:(WordPress 相关路径函数)